Computer Science/프로그래밍언어

OCaml Tutorial | Primitives and Expressions

토마토. 2022. 3. 8. 17:49

TryOCaml (ocamlpro.com)

 

Try OCaml

 

try.ocamlpro.com

 

print hello world 하는 법은? 

print_string "hello world";;
@martini:~$ vim primitives.ml
@martini:~$ ocaml primitives.ml
print_int (5+5);;
@martini:~$ vim primitives_int.ml
@martini:~$ ocaml primitives_int.ml