fork download
  1.  
  2. f n s=[1,s+1..n]
  3.  
  4.  
  5. main = print (f 100 7)
Success #stdin #stdout 0s 4592KB
stdin
Standard input is empty
stdout
[1,8,15,22,29,36,43,50,57,64,71,78,85,92,99]