vault backup: 2023-09-12 15:15:04

This commit is contained in:
2023-09-12 15:15:04 +02:00
parent 0ebe16a8df
commit 6b6d61d6cd
2 changed files with 22 additions and 6 deletions

View File

@ -0,0 +1,15 @@
If we want to print something in CAML, we have to use this structure
```Ocaml
# print_string "Hello World!";;
Hello! - : unit=()
# print_int ;;
-: int -> unit = <fun>
(*expression*)
# print_[type] [things to print];;
[things to print] -: unit=()
```