1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

adding more comment tests -- this terminator/comment as-block business really seems to have opened them up a bit

This commit is contained in:
Jeremy Ashkenas 2010-03-10 16:44:50 -05:00
parent f2d0aee656
commit b9f1390405

View file

@ -33,3 +33,15 @@ obj: {
two: 2
# comment
}
result: if true # comment
false
ok not result
result: if false
false
else # comment
45
ok result is 45