Search
 
SCRIPT & CODE EXAMPLE
 

RUBY

new line in ruby

# 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;
Comment

new line in ruby

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
Comment

PREVIOUS NEXT
Code Example
Ruby :: rails check routes in console 
Ruby :: array to hash ruby 
Ruby :: date class to unix timestamp ruby 
Ruby :: starting delayed_jobs in local rails 3 
Ruby :: save to csv ruby 
Ruby :: ruby each do method 
Ruby :: preview mailers rails 
Ruby :: rails render head: :ok 
Ruby :: how to find even number in an array ruby 
Ruby :: ruby activerecord find where less than 
Ruby :: how to use multiple ruby version in mac as per project 
Ruby :: ruby print 
Ruby :: ruby os command injection 
Ruby :: format date rails created long 
Ruby :: ruby begin rescue ensure 
Ruby :: generate view rails 
Ruby :: rails include module 
Ruby :: force stop rails server 
Ruby :: ruby how to filter through excel 
Ruby :: my rails server exits automatically and now gives the following error: 
Ruby :: sequel alter table 
Ruby :: rails admin overwrite view 
Ruby :: difference between is_a and kind_of ruby 
Ruby :: time loop start with non zero in ruby 
Ruby :: send email rails c one line 
R :: r delete all variables 
R :: need R code 
R :: merge multiple datatable in r 
R :: r - change column name 
R :: correlation matrix in r 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =