From Why's example: _________________________________________________ require 'wordlist' # Get evil idea and swap in code words print "Enter your new idea: " idea = gets code_words.each do |real, code| idea.gsub!( real, code ) end __________________________________________________ Where is the beginning of 'end'? Is it 'require'? (Like 'If' would be the beginning of an If statement (or is it block)) Thanks guys! -- Posted via http://www.ruby-forum.com/.