TypeScript/tests/baselines/reference/stradac.js
2014-08-14 06:21:30 -07:00

23 lines
241 B
JavaScript

//// [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
*/
function foo() {
x++;
}