RosettaCodeData/Task/Input-loop/Oz/input-loop.oz

8 lines
185 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
%% 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