florian 21 tahun lalu
induk
melakukan
cfc42059a7
1 mengubah file dengan 3 tambahan dan 3 penghapusan
  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.