Espruino/tests/test_comments_4.js
2017-12-06 09:35:30 +00:00

12 lines
147 B
JavaScript

// http://forum.espruino.com/conversations/314217/
function foo() {
/*//a comment
var myvar=0;
//another comment
*/
result=1;
}
foo();