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

Ruby Ruby Blocks Working With Blocks Build a Simple Benchmarker

Curly-Braces Vs. Do-End - One works, the other does not, but why?

Due to a bit of a habit working with curly-braces, I have gotten to the point where I use them instead of the Do-End structure Jason suggests for multi-line blocks, more or less experiencing them as synonymous in most situations, but then I ran in to the situation where:

class SimpleBenchmarker
  def run(description, &block)
    start_time = Time.now
    block.call
    end_time = Time.now
    elapsed = end_time - start_time
    puts "\n"
    puts "#{description} results"
    puts "Elapsed time: #{elapsed} seconds"
  end
end

benchmarker = SimpleBenchmarker.new
benchmarker.run "Sleep a random amount of time" {
  5.times {
    print "."
    sleep(rand(0.1..1.0))
  }
}       

does not work, with an error message of:

simple_benchmarker.rb:14: syntax error, unexpected '{', expecting end-of-input
...leep a random amount of time" {
...

but the following code block working just fine:

class SimpleBenchmarker
  def run(description, &block)
    start_time = Time.now
    block.call
    end_time = Time.now
    elapsed = end_time - start_time
    puts "\n"
    puts "#{description} results"
    puts "Elapsed time: #{elapsed} seconds"
  end
end

benchmarker = SimpleBenchmarker.new
benchmarker.run "Sleep a random amount of time" do
  5.times do
    print "."
    sleep(rand(0.1..1.0))
  end
end     

Does anyone know what the difference is here?

1 Answer

After reading this stack overflow I added parentheses and the code ran with curly braces

benchmarker.run ("Sleep a random amount of time") {