//Put this in a.rb:puts "Hello from a.rb"//And put this in a file called b.rb:load 'a'puts "Hello from b.rb"load 'a'puts "Hello again from b.rb"//Run with ruby b.rb