8 lines
106 B
Plaintext

node diagonal_int (i: int) returns (o1, o2 : int);
var y: int;
let
o2 = y;
y = i;
o1 = i;
tel