Browse Source

* removed function to make focus on main prog parms

mazen 22 years ago
parent
commit
22a60095c9
1 changed files with 0 additions and 11 deletions
  1. 0 11
      tests/sparc/test0001.pas

+ 0 - 11
tests/sparc/test0001.pas

@@ -3,18 +3,7 @@
 PROGRAM SparcTest;
 VAR
   x,y:Cardinal; 
-  z:0..255;
-FUNCTION CopyMe(x:Cardinal):Cardinal;
-  BEGIN
-    CopyMe:=x;
-  END;
-FUNCTION Add(a,b:Cardinal):Cardinal;
-  BEGIN
-    Add:=a+b;
-  END;
 BEGIN
   y:=0;
   z:=0;
-  x:=1+y;
-  x:=Add(x,y);
 END.