Blame view

examples/swap.vs 136 Bytes
f2c4dc81   Salvador Abreu   added most of the...
1
2
3
4
5
6
7
swap = map (a, b) -> (int, int) [ return (b,a); ]

program = map () -> bool [
	(i, j) := swap (1, 2);
	write_int (i);
	write_int (j);
]