浏览代码

no message

florian 21 年之前
父节点
当前提交
cfc42059a7
共有 1 个文件被更改,包括 3 次插入3 次删除
  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.