diff --git a/bin/fOOrth b/bin/fOOrth index cd0aa61..6ed24af 100644 --- a/bin/fOOrth +++ b/bin/fOOrth @@ -3,6 +3,6 @@ # Standalone execution of the fOOrth environment. # -require_relative '../demo' +require 'fOOrth' XfOOrth::main diff --git a/demo.rb b/demo.rb index 90bec00..936f6ac 100644 --- a/demo.rb +++ b/demo.rb @@ -6,7 +6,7 @@ if ARGV[0] == 'local' require_relative 'lib/fOOrth' puts "\nOption(local) Loaded fOOrth from the local code folder." elsif defined?(XfOOrth) - puts "The fOOrth system is already loaded." + puts "\nThe fOOrth system is already loaded." else begin require 'fOOrth'