module Main implementation Show (Int -> b) where show x = "<>" implementation Show (Char -> b) where show x = "<>" IntFn : Type -> Type IntFn = \x => Int -> x dbl : IntFn Int dbl x = x * 2 main : IO () main = printLn dbl