fork download
  1. puts "one two" \
  2. " three four"
  3.  
  4. puts "one two" <<
  5. " three four"
  6.  
  7. puts "one two" +
  8. " three four"
  9.  
  10. print "one two"
  11. puts " three four"
Success #stdin #stdout 0.01s 7452KB
stdin
Standard input is empty
stdout
one two three four
one two three four
one two three four
one two three four