A Reverse Polish Lisp language implemented in Ruby
Find a file
2022-02-17 15:21:24 +01:00
bin [bin/rpl] implicit -i if no args given 2022-02-16 16:28:33 +01:00
lib optimize eval and fix it for :list 2022-02-17 15:21:24 +01:00
spec parser understands lists 2022-02-17 15:14:20 +01:00
.gitignore
LICENSE
Makefile helper Makefile 2022-02-16 16:29:18 +01:00
README.md make it a gem 2022-02-15 17:06:19 +01:00
rpl.gemspec up version to 0.2.0 2022-02-16 16:29:28 +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