heptagon/test/good/format.ept
2011-12-12 10:36:24 +01:00

11 lines
191 B
Plaintext

open Iostream
unsafe fun f(a:int) returns (o:int)
var x:int;
let
x = a + 2;
() = printf("Int is %d\n", x);
() = printf("Bool is %b\n", x = 0);
() = printf("Test\n");
o = x - 1;
tel