I'm trying out Ruby koans and found some tests using this _n_ , never seen it before what is it and how do I use it?
Example:
def test_objects_have_methods
fido = Dog.new
assert fido.methods.size > _n_
end
// John
|
I'm trying out Ruby koans and found some tests using this Example:
// John | ||||
feedback
|
|
Found it:
| |||
|
feedback
|
|
It's just a variable. Variable names in ruby can use underscores (even at fist and last positions). Try ctrl-clicking it in your IDE and you'll probably see its declaration. | |||
|
feedback
|
|
Are you sure that | |||
|
feedback
|