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