heptagon/test/good/format.ept

11 lines
191 B
Plaintext
Raw Normal View History

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