Skip to content

Instantly share code, notes, and snippets.

@kevgathuku
Created June 16, 2025 18:34
Show Gist options
  • Save kevgathuku/04da37fb9301a0f1cc3f7e9d68d628e8 to your computer and use it in GitHub Desktop.
Save kevgathuku/04da37fb9301a0f1cc3f7e9d68d628e8 to your computer and use it in GitHub Desktop.
let () = print_endline "THIS" in
let () = print_endline "IS" in
print_endline "3110";;
(* Can also be written as *)
print_endline "THIS";
print_endline "IS";
print_endline "3110"
(* Source: https://courses.cs.cornell.edu/cs3110/2021sp/textbook/basics/printing.html *)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment