init: repo
This commit is contained in:
10
open_set/02_var_defn3.pas
Normal file
10
open_set/02_var_defn3.pas
Normal file
@@ -0,0 +1,10 @@
|
||||
{ test local var define }
|
||||
program main;
|
||||
var
|
||||
a, b0, c: integer;
|
||||
begin
|
||||
a := 1;
|
||||
b0 := 2;
|
||||
c := 3;
|
||||
write(b0+c);
|
||||
end.
|
||||
Reference in New Issue
Block a user