-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
138176c
commit 41939ee
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version=0.24.1 | ||
version=0.26.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
let read_file path = | ||
let rec loop ic acc = match input_line ic with | ||
let rec loop ic acc = | ||
match input_line ic with | ||
| line -> loop ic (line :: acc) | ||
| exception End_of_file -> List.rev acc | ||
in | ||
let ic = open_in path in | ||
Fun.protect ~finally:(fun () -> close_in ic) (fun () -> loop ic []) | ||
|> String.concat "\n" | ||
|> String.concat "\n" |