added this file

This commit is contained in:
simonkellet 2022-10-10 13:48:49 +01:00
parent 693d933c19
commit d1a97c0d8f

12
programs/adddeep.tri Normal file
View File

@ -0,0 +1,12 @@
let
var a: Integer
in
begin
a := 10 + 20 * 2 / 3;
putint(a);
puteol();
a := 5 + 8;
putint(a)
end