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 trialMatt Steves
1,954 PointsProblem in modifying the amount of screams the monster has
I have tried multiple times, and have followed the instructions throughly, yet it throws a NameError.
Help much appreciated.
class Monster
attr_reader :name, :actions
def initialize(name)
@name = name
@actions = {
screams: 0,
scares: 0,
runs: 0,
hides: 0
}
end
def scream(&block)
@actions[screams] += 1
print "#{name} screams! "
end
end
monster = Monster.new("Fluffy")
monster.scream { puts "BOO!" }
Samuel Webb
25,370 Points@sitkibagdat can you move your answer to the Add an Answer section so you can get credit for having the correct answer.
sitkibagdat
27,311 Points@samuelwebb As you wish :)
1 Answer
sitkibagdat
27,311 PointsYou should use symbol in @actions[:screams] += 1
Samuel Webb
25,370 PointsPoints, points get all the points :)
sitkibagdat
27,311 Pointssitkibagdat
27,311 PointsYou should use symbol in
@actions[:screams] += 1