TypeScript/tests/baselines/reference/stradac.js
2014-07-12 17:30:19 -07:00

20 lines
188 B
JavaScript

//// [stradac.ts]
var x = 10;
// C++-style comment
/*
C-Style comment
*/
function foo() {
x++;
}
//// [stradac.js]
var x = 10;
function foo() {
x++;
}