TypeScript/tests/baselines/reference/stradac.js

24 lines
243 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [stradac.ts]
var x = 10;
// C++-style comment
/*
C-Style comment
*/
function foo() {
x++;
}
//// [stradac.js]
var x = 10;
// C++-style comment
/*
C-Style comment
*/
2014-07-13 01:04:16 +02:00
function foo() {
x++;
}