RosettaCodeData/Task/Input-loop/Oz/input-loop.oz
2023-07-01 13:44:08 -04:00

7 lines
185 B
Text

%% Returns a list of lines.
%% Text: an instance of Open.text (a mixin class)
fun {ReadAll Text}
case {Text getS($)} of false then nil
[] Line then Line|{ReadAll Text}
end
end