fork download
  1. yobaSum = zipWith (+)
  2.  
  3. main = print $ yobaSum s $ tail s
  4. where s = [1..10]
Success #stdin #stdout 0s 6228KB
stdin
Standard input is empty
stdout
[3,5,7,9,11,13,15,17,19]