ligo/src/test/contracts/lambda2.religo

9 lines
183 B
Plaintext
Raw Normal View History

2019-12-10 13:47:31 +00:00
type storage = unit;
/* Not supported yet:
let main (p:unit) storage = (fun x -> ()) ()
*/
let main = (z: unit, storage) =>
((f: (unit => unit)) => f())((z: unit) => unit);