fork(1) download
  1. import qualified Prelude as Pre
  2. import Prelude((++), ($))
  3.  
  4. main = Pre.print $ [1, 2, 3] ++ [4, 5, 6]
Success #stdin #stdout 0s 6224KB
stdin
Standard input is empty
stdout
[1,2,3,4,5,6]