# For a new line, insert
print "hello", "
", "hello", "
"
# puts automatically adds new line at end of text
puts "run"
# also use
in strings
text = "The quick, brown fox
jumped"
print text;
str = "hello world"
str_with_new_line = "hello world/n"
# You also can output values differently
# 1. print
# Outputs the value with no new line
# 2. puts
# Outputs the value with new line
str1 = "hello"
str2 = "world"
puts str1
puts str2
# Output: hello
# world
print str1
print str2
# Output: helloworld