September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
10
Task/Input-loop/Phix/input-loop.phix
Normal file
10
Task/Input-loop/Phix/input-loop.phix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
procedure process_line_by_line(integer fn)
|
||||
object line
|
||||
while 1 do
|
||||
line = gets(fn)
|
||||
if atom(line) then
|
||||
exit
|
||||
end if
|
||||
-- process the line
|
||||
end while
|
||||
end procedure
|
||||
Loading…
Add table
Add a link
Reference in a new issue