Kevin Chaloux
Kevin Chaloux
The REPL currently supports semantics for binding locals to variable names: ``` >>> 100 -> x ``` In normal code, this would be accessible within functions or pushable directly onto...
At the moment, it isn't possible to redefine a function in the REPL. ``` >>> def greet(->) { "Hello!" say } >>> def greet(->) { "Welcome!" say } REPL:1:1: error:...
Kitten should offer a way to read arguments from the command line in some fashion, say: ``` def sysArgs( -> [[Char]] +IO): __systemArguments // do your builtin magic! ``` Or...