about summary refs log tree commit diff stats
path: root/bin/main.ml
diff options
context:
space:
mode:
authorbrian <brianmchu42@gmail.com>2023-12-03 22:17:21 -0800
committerbrian <brianmchu42@gmail.com>2023-12-03 22:17:21 -0800
commitb4ac6d36f2f20f45c6d67f28c3785efaa482085d (patch)
treea7dc29d1cb316c15d2835bbca65a4401c9b62c2e /bin/main.ml
parent7000f47b60b3fbdf90e2db12a363bbd1b2236b53 (diff)
downloadAdventOfCode2023-b4ac6d36f2f20f45c6d67f28c3785efaa482085d.tar.gz
fix compilation errors for using Caml instead of Stdlib HEAD main
Diffstat (limited to 'bin/main.ml')
-rw-r--r--bin/main.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/main.ml b/bin/main.ml
index 8e36c28..494e274 100644
--- a/bin/main.ml
+++ b/bin/main.ml
@@ -5,7 +5,7 @@ let () =
   let args = Sys.argv in
   let day = args.(1) in
   let input_file = Printf.sprintf "inputs/%s.in" day in
-  if not @@ Caml.Sys.file_exists input_file then
+  if not @@ Stdlib.Sys.file_exists input_file then
     download_input day input_file ;
   let file = In_channel.open_text input_file in
   let inputs = In_channel.input_all file in