numbers = 1..10
print numbers.map {|x| x*x}
# I want to do:
square = {|x| x*x}
print numbers.map square
Because the syntax is more concise. I there a way to do this without having to use def + end?
Because the syntax is more concise. I there a way to do this without having to use |
||||
|
|
|||
|
You cannot assign a block to a variable because a block isn't really an object per se. What you can do, is assign a
|
|||||
|