A Reverse Polish Lisp language implemented in Ruby
Find a file
2022-02-16 16:22:52 +01:00
bin allow making REPL using preloaded interpreter 2022-02-16 16:22:52 +01:00
lib RPL's lists are enclosed in {} 2022-02-16 16:21:37 +01:00
spec make it a gem 2022-02-15 17:06:19 +01:00
.gitignore Initial commit 2021-10-30 17:44:38 +02:00
LICENSE Initial commit 2021-10-30 17:44:38 +02:00
README.md make it a gem 2022-02-15 17:06:19 +01:00
rpl.gemspec make it a gem 2022-02-15 17:06:19 +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