Created
June 16, 2025 18:34
-
-
Save kevgathuku/04da37fb9301a0f1cc3f7e9d68d628e8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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