fork download
  1. h = "Hello, "
  2. w = "world!"
  3.  
  4. print(h..w)
  5.  
  6. io.write(h, "\n", w)
Success #stdin #stdout 0s 14120KB
stdin
Standard input is empty
stdout
Hello, world!
Hello, 
world!