How to print in multiline with Ruby

2 Answers

0 votes
puts """Ruby is an interpreted, high-level, general-purpose programming language.
It was designed and developed in the mid-1990s by Yukihiro 'Matz' Matsumoto in Japan.
Ruby is dynamically typed and uses garbage collection.
"""



# run:
#
# Ruby is an interpreted, high-level, general-purpose programming language.
# It was designed and developed in the mid-1990s by Yukihiro 'Matz' Matsumoto in Japan.
# Ruby is dynamically typed and uses garbage collection.
#

 



answered Dec 20, 2020 by avibootz
0 votes
s = "Ruby is an interpreted,\nhigh-level, general-purpose\nprogramming language."

puts s



# run:
#
# Ruby is an interpreted,
# high-level, general-purpose
# programming language.
#

 



answered Dec 20, 2020 by avibootz

Related questions

1 answer 152 views
1 answer 264 views
1 answer 225 views
2 answers 215 views
215 views asked Dec 20, 2020 by avibootz
1 answer 265 views
2 answers 220 views
220 views asked Dec 19, 2020 by avibootz
1 answer 187 views
...