fork(1) download
  1.  
  2. a = [1, 2, 3]
  3. b = [4, 5, 6]
  4. print (a + b)
Success #stdin #stdout 0.04s 9984KB
stdin
Standard input is empty
stdout
[1, 2, 3, 4, 5, 6]