init: repo

This commit is contained in:
2024-03-09 20:11:27 +08:00
commit 01cbcac8ef
79 changed files with 3898 additions and 0 deletions

9
open_set/10_sub2.pas Normal file
View File

@@ -0,0 +1,9 @@
program main;
const
a = 10;
var
b: integer;
begin
b := 2;
write(b - a);
end.