coffy-script
coffy-script copied to clipboard
CoffeeScript with a Y.
Results
2
coffy-script issues
Sort by
recently updated
recently updated
newest added
this coffyscript code ``` [ text ] = yield read_text_file route, resume ``` will be translated into ``` text = yield(read_text_file(route, resume))[0]; ``` which is wrong and won't work. instead,...
writing ``` f = ->* yield null ``` results in ``` error: unexpected IDENTIFIER f = ->* yield null ^^^^^ ```