Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
  mb45
13,809 PointsBenchmarker Class Task - Syntax Error
I keep getting this error when trying to submit my code: SyntaxError: eca5dda5-cd7f-4323-97ce-e5a88aaaf7ab.rb:33: syntax error, unexpected keyword_end, expecting end-of-input
But, I can't see what I have done wrong. Not sure if it's a bug, or if it's my error, could someone point it out to me?
Many thanks!
class SimpleBenchmarker
  def run(description, &block)
    start_time = Time.now
    block.call
    end_time = Time.now
    elapsed = end_time - start_time
    puts "\n#{description} results"
    puts "Elapsed time: #{elapsed} seconds"
  end
end
benchmarker = SimpleBenchmarker.new
  benchmarker.run "description" do
  end
end
1 Answer
Seth Reece
32,867 PointsHi Mile,
You are pretty close. You want to put the description string inside parentheses, and some block of code between the do and end. You also have an extra end at the end of your code. e.g.
 class SimpleBenchmarker
  def run(description, &block)
    start_time = Time.now
    block.call
    end_time = Time.now
    elapsed = end_time - start_time
    puts "\n#{description} results"
    puts "Elapsed time: #{elapsed} seconds"
  end
end
benchmarker = SimpleBenchmarker.new
benchmarker.run("description") do
  puts "All done!"
end
mb45
13,809 Pointsmb45
13,809 PointsThanks Seth! I was pulling my hair out with this!