Find a file
2015-01-14 21:50:07 -05:00
docs UG update. 2015-01-12 23:18:57 -05:00
integration Made the specs for .sleep test more lax. 2015-01-14 16:07:57 -05:00
lib Code feng shui. 2015-01-14 15:41:03 -05:00
tests Added validation for all class names. 2015-01-14 11:11:20 -05:00
.gitignore Cleanup build env more like bundler would do it. 2014-11-03 16:51:04 -05:00
.rdoc_options The Token struct and rdoc corrections. 2014-09-19 13:19:33 -04:00
demo.rb Minor demo update. 2015-01-14 21:50:07 -05:00
fOOrth.gemspec Added the in_array gem. 2015-01-11 18:24:37 -05:00
fOOrth.reek Day 1 2014-09-09 15:35:22 -04:00
Gemfile Cleanup build env more like bundler would do it. 2014-11-03 16:51:04 -05:00
license.txt Day 1 2014-09-09 15:35:22 -04:00
rakefile.rb Added some dormant options for rdoc. 2014-12-01 15:46:17 -05:00
README.md Upgraded README.md 2014-11-04 15:30:25 -05:00
reek.txt Added the dbg_puts method for debug output. 2015-01-04 15:59:38 -05:00
sire.rb Cleanup of the SIRE dev tool. 2014-11-10 11:48:34 -05:00
t.txt SIRE enhancements. 2014-10-15 12:27:05 -04:00

The fOOrth Language gem.

This file contains the read-me for the fOOrth language gem. The fOOrth language is an experimental variant of FORTH that attempts to incorporate object oriented and functional programming concepts.

As an aside, there can be no doubt that the fOOrth project is an utter waste of anyone's time, unless one counts the insights gained into the inner workings of Ruby and meta programming.

Usage

Adding fOOrth can be as simple as:

require 'fOOrth'
XfOOrth.main

This will launch an interactive fOOrth session. Alternatively this can be done with:

rake run

Be sure to be in the folder that contains the rakefile in order for this command to work.


If, instead, a non-interactive facility is required, use:

require 'fOOrth'
XfOOrth.virtual_machine.process_string '1 2 +'

where the string is fOOrth code to be executed, or for a file of code, use:

require 'fOOrth'
XfOOrth.virtual_machine.process_file 'my_file.4th'

Notes

  • Tested under ruby 1.9.3p484 (2013-11-22) [i386-mingw32]
  • Not sure what version broke minitest, but I'm not changing!
  • I have used rdoc 4.0.1 here. Later versions of rdoc look like crap!