florian hace 21 años
padre
commit
cfc42059a7
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  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.