Canon/open_set/31_comment1.pas

15 lines
162 B
ObjectPascal
Raw Normal View History

2024-03-09 20:11:27 +08:00
{ test comment }
program main;
var a: integer;
begin
a := 5;
{
int b = 4;
a = b + a;
(*/*
b = 1;
// b = 2;
*)
}
write(a);
end.