fork download
  1. f :: Int -> Int
  2. f x = g x
  3.  
  4. g :: Int -> Int
  5. g x = f x
  6.  
  7. main :: IO ()
  8. main = print $ f 42
  9.  
Runtime error #stdin #stdout 0s 5672KB
stdin
Standard input is empty
stdout
Standard output is empty