ligo/src/test/contracts/lambda2.mligo
2020-03-02 18:01:56 +01:00

9 lines
194 B
Plaintext

type storage = unit
(* Not supported yet:
let main (a, s : unit * storage) = (fun x -> ()) ()
*)
let main (a, s : unit * storage) =
(fun (f : unit -> unit) -> f ()) (fun (_ : unit) -> unit)