working on REPL: implemented previous lines importing

This commit is contained in:
Stepan Koltsov
2012-06-08 04:19:24 +04:00
parent c580a75f20
commit 6946abbcea
17 changed files with 414 additions and 35 deletions
@@ -0,0 +1,6 @@
>>> val x = 1
null
>>> fun add1(y: Int) = x + y
null
>>> add1(999999)
1000000