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 trialLogan Hutchins
6,680 Pointsthis challenge makes absolutely no sense to me. i obviously cannot change the name of the method
it doesn't make sense for 2 reasons
- i obviously cannot change method.rb to hello.rb because its locked in place 2.do you want me to add, subract, put? the instructions are WAY too vague
def (a)
end
```'i also tried this
def add(a)
puts a
end
add("hello")
2 Answers
andren
28,558 PointsThey aren't asking you to rename they file, they ask you to make a method named hello, and the instructions doesn't provide more detail than that because that is all they require you to do. The method you create does not need to do anything, you just need to make it and name it "hello". Like this:
def hello(a)
end
Logan Hutchins
6,680 Pointsoh i see ! you can name them individually. thats cool.