Here is simon_says_spec.rb
require simon_says describe \"repeat\" do it \"should repeat\" do repeat(\"hello\").should == \"hello hello
You are missing the end statement for your do loop.
def repeat(x, y = 2) y.times do print x + ' ' end end