11 lines
225 B
Plaintext
Raw Normal View History

2019-12-10 13:47:31 +00:00
type storage = unit;
/* not supported yet
let%entry main (p:unit) storage =
(fun x -> ()) ()
*/
let main2 = ((p: unit), storage) => (((xxx: unit)) => ())();
let main = (x: (unit, storage)) => main2(x[0], x[1]);