Added increment demo program
This commit is contained in:
parent
1da8cabdf7
commit
f5951671b9
14
programs/increment.tri
Normal file
14
programs/increment.tri
Normal 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
|
Reference in New Issue
Block a user