#!/usr/bin/ruby s1 = "hello, world" s2 = s1.clone s1 = "hello, computer" print "#{s2} --- #{s1}\n"