#!/usr/bin/env rubydef repeat( word, times ) puts word * timesendrepeat( "Hello! ", 3) # => Hello! Hello! Hello!repeat "Good-bye! ", 4 # => Good-bye! Good-bye! Good-bye! Good-bye!