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
Naomi Freeman
Treehouse Guest Teachercase when .include? ruby
I'm trying to do something like this
class ClassName
def sup(statement)
case statement
when statement.upcase
'Woah, chill out!'
when statement.include?('?')
'Sure.'
else
'Whatever.'
end
end
end
But the include isn't doing anything. How do I make this work?
I also tried
when statement.include?('?') === statement
and flipping that. No ducks.