mirror of
https://github.com/PeterCamilleri/fOOrth
synced 2024-11-16 07:47:56 +01:00
12 lines
198 B
Ruby
12 lines
198 B
Ruby
|
# coding: utf-8
|
||
|
|
||
|
#This file contains a minimum host environment for running the fOOrth system.
|
||
|
|
||
|
begin
|
||
|
require 'fOOrth'
|
||
|
rescue LoadError => e
|
||
|
require './lib/fOOrth'
|
||
|
end
|
||
|
|
||
|
XfOOrth::main
|