vault backup: 2023-09-12 15:31:50

This commit is contained in:
Louis Gallet 2023-09-12 15:31:50 +02:00
parent 615167f073
commit c380a6ff4d
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -41,3 +41,10 @@ toto
```Ocaml ```Ocaml
# print_string "The answer is: "; print_int 42;; # print_string "The answer is: "; print_int 42;;
The answer is: 42 -: unit = () The answer is: 42 -: unit = ()
# 3*2*7; print_string "The answer is : ";;
The answer is -: unit = ()
Warning 10 [non-unit-statement]: this expression should have type unit.
# print_string "The answer is: "; 3*2*7;;
The answer is: -:int = 42