@martini:~$ vim conditional.ml
@martini:~$ ocaml conditional.ml
if (5>3) then print_int 5
else print_int 3;;
if (3==1) then 1 else if (3==2) then 2 else 3;;
true, false
then과 else가 꼭 있어야 함
return type을 통일해줘야 하나?
'Computer Science > 프로그래밍언어' 카테고리의 다른 글
OCaml Tutorial | Introduction to Lists (0) | 2022.03.08 |
---|---|
OCaml Tutorial | Introduction to Pattern Matching (0) | 2022.03.08 |
OCaml Tutorial | Introduction to Functions (0) | 2022.03.08 |
OCaml Tutorial | Introduction to Variables (0) | 2022.03.08 |
OCaml Tutorial | Primitives and Expressions (0) | 2022.03.08 |