Add trailing functions to ocaml sample file

pull/101/head
Wilfred Hughes 2022-01-16 17:20:45 +07:00
parent bba1b012c0
commit a45afadf50
2 changed files with 6 additions and 0 deletions

@ -6,3 +6,6 @@ let do_stuff x =
match x with
| `Foo -> 1
| _ -> 3
let stuffs y =
y + 1

@ -8,3 +8,6 @@ let do_stuff x =
| `Foo -> 1
| `Bar -> 2
| _ -> 3
let stuffs y =
y + 1