fork(10) download
  1. mayoresQue20 :: Int -> Bool
  2. mayoresQue20 n = n > 20
  3.  
  4. main = do
  5. print( filter mayoresQue20 [11, 22, 44, 88] )
Success #stdin #stdout 0s 4688KB
stdin
Standard input is empty
stdout
[22,44,88]