From a45afadf50a16b600008e90695ebf12bd6c9b564 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sun, 16 Jan 2022 17:20:45 -0800 Subject: [PATCH] Add trailing functions to ocaml sample file --- sample_files/ocaml_after.ml | 3 +++ sample_files/ocaml_before.ml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sample_files/ocaml_after.ml b/sample_files/ocaml_after.ml index fe4d16a2a..788c9dfb2 100644 --- a/sample_files/ocaml_after.ml +++ b/sample_files/ocaml_after.ml @@ -6,3 +6,6 @@ let do_stuff x = match x with | `Foo -> 1 | _ -> 3 + +let stuffs y = + y + 1 diff --git a/sample_files/ocaml_before.ml b/sample_files/ocaml_before.ml index 7c0757ba0..42ed79c89 100644 --- a/sample_files/ocaml_before.ml +++ b/sample_files/ocaml_before.ml @@ -8,3 +8,6 @@ let do_stuff x = | `Foo -> 1 | `Bar -> 2 | _ -> 3 + +let stuffs y = + y + 1