CanonSharp/OpenSet/02_var_defn3.pas
jackfiled 89ce313b77 feat: CanonSharp Benchmark. (#4)
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/4
Co-authored-by: jackfiled <xcrenchangjun@outlook.com>
Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
2024-08-19 14:37:34 +08:00

11 lines
122 B
ObjectPascal

{ test local var define }
program main;
var
a, b0, c: integer;
begin
a := 1;
b0 := 2;
c := 3;
write(b0+c);
end.