A Reverse Polish Lisp language implemented in Ruby
Find a file
Gwenhael Le Moine 14567f4d96
todo comments
2022-02-22 15:34:32 +01:00
bin [bin/rpl] implicit -i if no args given 2022-02-16 16:28:33 +01:00
lib parse numerics of all possible bases (0b, 0o, 0x, 0NNN_) 2022-02-22 15:33:36 +01:00
spec parse numerics of all possible bases (0b, 0o, 0x, 0NNN_) 2022-02-22 15:33:36 +01:00
.gitignore Initial commit 2021-10-30 17:44:38 +02:00
LICENSE Initial commit 2021-10-30 17:44:38 +02:00
Makefile helper Makefile 2022-02-16 16:29:18 +01:00
README.md todo comments 2022-02-22 15:34:32 +01:00
rpl.gemspec 0.3.0 2022-02-17 15:22:27 +01:00

rpl.rb

https://github.com/louisrubet/rpn/ inspired language in ruby

To run REPL locally: ruby -Ilib bin/rpl

To run the test suite: find ./spec/ -name \*.rb -exec ruby -Ilib {} \;

TODO-list

Not implemented

  • if
  • then
  • else
  • end
  • start
  • for
  • next
  • step
  • do
  • until
  • while
  • repeat
  • ->, →
  • edit