I can't find the answer using Google.
Works!
i = 15
appended = "Dark " << "Silk"
appended = appended
Doesn't work. :(
i = 15
appended = "Dark " << i
appended = appended
|
I can't find the answer using Google. Works!
Doesn't work. :(
|
|||
| show 5 more comments |
|
Try this:
or for non-
You can also use string interpolation (which is more idiomatic):
|
|||||
|
|
Does
do what you want? |
|||||||
|
|
I suggest you read through Ruby's documentation to find out more about built-in classes and methods. |
|||||||||||||
|
appended = "Dark " << i.to_s– fl00r Jun 25 '12 at 19:28/Ruby192/doc/bookofruby.pdffor example. – Charles Caldwell Jun 25 '12 at 20:00