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

16
open_set/29_unary_op2.pas Normal file
View File

@@ -0,0 +1,16 @@
program main;
var a,b: integer;
begin
a := 56;
b := 4;
a := a - - 4 + +b;
if (- not not not a <> 65) then
begin
a := - - -1;
end
else
begin
a := 0 + +b;
end;
write(a);
end.