You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
➜ node -v
v0.8.22
➜ coco -v
Coco 0.9.1
➜ coco -i
coco> a = 10
10
coco> a
ReferenceError: a is not defined
coco> a = 10; a
10
coco> a
ReferenceError: a is not defined
coco>
➜ coffee -v
CoffeeScript version 1.6.1
➜ coffee
coffee> a = 10
10
coffee> a
10
coffee> a = 10; a
10
coffee> a
10
The text was updated successfully, but these errors were encountered:
Am I missing something obvious here?
The text was updated successfully, but these errors were encountered: