@@ -0,0 +1,15 @@
+procedure myproc;
+var
+ a: word;
+begin
+ a := 1;
+ writeln (a);
+end;
+
+ myproc;
+end.