Skip to content

Commit e5843f3

Browse files
committed
Fix variable names
1 parent 4f23140 commit e5843f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/proc-001.phpt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ require("interbase.inc");
1414
AS
1515
DECLARE VARIABLE I INTEGER;
1616
BEGIN
17-
:I = 1;
17+
I = 1;
1818
WHILE (:I <= 5) DO BEGIN
19-
:N = :I;
20-
:RESULT = :ARG + :I;
21-
:I =:I + 1;
19+
N = :I;
20+
RESULT = :ARG + :I;
21+
I = :I + 1;
2222
SUSPEND;
2323
END
2424
END");

0 commit comments

Comments
 (0)