6 lines
117 B
Text
6 lines
117 B
Text
let rec read_lines ic =
|
|
try
|
|
let line = input_line ic in
|
|
line :: read_lines ic
|
|
with End_of_file ->
|
|
[]
|