Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REPL doesn't store state #212

Open
utkarshkukreti opened this issue Mar 16, 2013 · 2 comments
Open

REPL doesn't store state #212

utkarshkukreti opened this issue Mar 16, 2013 · 2 comments
Labels

Comments

@utkarshkukreti
Copy link

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
@vendethiel
Copy link
Contributor

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

@utkarshkukreti
Copy link
Author

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

satyr added a commit that referenced this issue Apr 27, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants