30 lines
496 B
Markdown
30 lines
496 B
Markdown
# rpl.rb
|
|
|
|
https://github.com/louisrubet/rpn/ inspired language in ruby
|
|
|
|
To run REPL locally: `rake run`
|
|
|
|
To run the test suite: `rake test`
|
|
|
|
# TODO-list
|
|
* pseudo filesystem: subdir/namespace for variables
|
|
. 'a dir' crdir 'a dir' cd vars
|
|
* SDL-based graphic environment/API
|
|
|
|
# Not implemented
|
|
* use IFT, IFTE
|
|
. if
|
|
. then
|
|
. else
|
|
. end
|
|
* use LOOP, TIMES
|
|
. start
|
|
. for
|
|
. next
|
|
. step
|
|
. do
|
|
. until
|
|
. while
|
|
. repeat
|
|
* use LSTO
|
|
. ->, →
|