I am trying to print all numbers between 1 and 50, using the following code:
[1..50].each{|n| puts n}
but the console print
[1..50]
I want to print something like this 1 2 3 4 ... 50
|
I am trying to print all numbers between 1 and 50, using the following code:
but the console print
I want to print something like this 1 2 3 4 ... 50 |
|||
|
Try the following code:
The problem is that you're using |
|||
|
|
|
The error here is that you are declaring an Array object with a range as its only element.
Now try:
|
|||
|
|
|
You can use
outputs: 1 2 3 4 5 6 7 8 9 10 The You can also do:
to print the same thing. So, try:
or:
To get the output you want. |
||||
|
|
You can cast your range (in parentheses) to an array ([1 2 3 4 5 6... 48 49 50]) and join each item (e.g. with
|
|||
|
|
[1..50]is equivalent to[(1..50)]- that should clear it up :D – user166390 Jan 25 at 19:32