File size: 107 Bytes
9425aed
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
module Main where

test :: [Int]
test =
  let x = 5
  in [ i
     | i <- [0..x-1]
     ]

main = return ()