A Reverse Polish Lisp language implemented in Ruby
Find a file
2022-02-26 21:10:01 +01:00
bin [WIP] almost there 2022-02-26 18:53:39 +01:00
lib avoid circular requiring 2022-02-26 20:51:09 +01:00
spec [WIP] almost there 2022-02-26 18:53:39 +01:00
.gitignore Initial commit 2021-10-30 17:44:38 +02:00
LICENSE Initial commit 2021-10-30 17:44:38 +02:00
Rakefile replace Makefile with equivalent Rakefile 2022-02-22 16:53:28 +01:00
README.md short-term todo-list 2022-02-25 20:11:43 +01:00
rpl.gemspec 0.6.0, complete overhaul of type system 2022-02-26 21:10:01 +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

  • use IFT, IFTE . if . then . else . end
  • use LOOP, TIMES . start . for . next . step . do . until . while . repeat
  • use LSTO . ->, →
  • edit