Browse Source

no message

florian 21 years ago
parent
commit
cfc42059a7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/webtbs/tw3023.pp

+ 3 - 3
tests/webtbs/tw3023.pp

@@ -9,8 +9,8 @@ Var
   A : Array of Integer;
 
 begin
-// Commented version does work.
-//  If (Length(A)=0) then
   If Not Assigned(A) then
-    Writeln('All OK');
+    halt(0)
+  else
+    halt(1);
 end.