Added increment demo program

This commit is contained in:
Sandy Brownlee 2022-09-21 16:49:53 +01:00
parent 1da8cabdf7
commit f5951671b9

14
programs/increment.tri Normal file
View File

@ -0,0 +1,14 @@
! this won't compile without implementing the bonus material in Practical 3
let
var a: Integer
in
begin
getint(var a);
a++;
putint(a);
puteol();
a++;
putint(a);
puteol();
end