CanonSharp/OpenSet/74_func_name.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

14 lines
150 B
ObjectPascal

program main;
var ret, f: integer;
function fn:integer;
begin
fn := 10;
end;
begin
ret := 0;
f := 20;
ret := f;
write(ret);
end.