You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/round0/metherds.rb

16 lines
225 B

def main()
5.times { puts "Mice!\n" }
ele = "Elephants like Peanuts, but they is poison!!"
puts ele + ' is of length = ' + ele.length.to_s
puts "I yam: " + self.to_s
end
if __FILE__ == $0
main()
end