satyr/coco

REPL doesn't store state

Opened this issue · 2 comments

Am I missing something obvious here?

➜  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

#145. Coco's REPL just doesnt have --bare implied

Oh well, I think this warning should definitely be present somewhere obvious then.