ligo/test/contracts/lambda2.mligo
2019-09-09 11:47:42 +02:00

11 lines
197 B
Plaintext

type storage = unit
(* not supported yet
let%entry main (p:unit) storage =
(fun x -> ()) ()
*)
let%entry main (p:unit) storage =
(fun (f : unit -> unit) -> f ())
(fun (x : unit) -> unit)