Programming Ruby 3.2 (5th Edition): missing interpolation in 'get_tax' return string (page 92)

In this class get_tax method return string is missing interpolation for the @name instance variable.

class TaxCalculator
  def initialize(name, &block)
    @name, @block = name, block
  end

  def get_tax(amount)
  "#@name on #{amount} = #{ @block.call(amount) }"
  end 
end

Should be:

def get_tax(amount)
  "#{@name} on #{amount} = #{ @block.call(amount) }"
end 

Thanks for the feedback! #@name is legal (though rare) syntax for interpolating instance variables. I think I will change it, though, if I get a chance, because the syntax is so rare. Thanks!

Noel

Oops, I apologise for the false alarm! I am just picking up Ruby, and haven’t seen interpolation without {} yet, so I reckoned it must have been a mistake. Thank you!

No problem at all, the syntax being used is quite rare in practice, and probably should be changed – good catch, thanks!

Noel

1 Like