fOOrth/demo.rb
2015-08-14 11:08:35 -04:00

17 lines
326 B
Ruby

# coding: utf-8
#This file contains a minimum host environment for running the fOOrth system.
begin
require 'fOOrth'
puts "\nLoaded fOOrth from the system gem."
rescue LoadError
require './lib/fOOrth'
puts "\nLoaded fOOrth from the local code folder."
end
puts
if __FILE__==$0
XfOOrth::main
end