fOOrth/demo.rb

18 lines
326 B
Ruby
Raw Normal View History

# coding: utf-8
#This file contains a minimum host environment for running the fOOrth system.
begin
require 'fOOrth'
2015-08-14 17:08:35 +02:00
puts "\nLoaded fOOrth from the system gem."
2015-01-15 03:50:07 +01:00
rescue LoadError
require './lib/fOOrth'
2015-08-14 17:08:35 +02:00
puts "\nLoaded fOOrth from the local code folder."
end
2015-01-15 03:50:07 +01:00
puts
2015-08-14 17:08:35 +02:00
if __FILE__==$0
XfOOrth::main
end