Add support CoffeeScript 2

This commit is contained in:
Namhyeon Go 2022-11-28 23:38:47 +09:00
parent 8196e0ac2f
commit a845dc075e
2 changed files with 9 additions and 1 deletions

2
app.js
View File

@ -225,6 +225,8 @@ function require(FN) {
"bare": true
});
});
console.log(T);
}
// compile

View File

@ -16,4 +16,10 @@ kids =
name: "Ida"
age: 9
console.log "Hello world, CoffeeScript";
main = (args) ->
console.log song.join(',')
console.log Object.keys(singers).join(',')
console.log bitlist.join(',')
console.log "Hello world, CoffeeScript"
exports.main = main