caml-light에서 단항 연산자와 이진 연산자로 -의 차이를 가지고 놀고 있습니다. let a b =
print_int b;
print_newline();
;;
let c d e =
print_int d;
print_newline();
print_int e;
print_newline();
;;
a (3 - 4
I는 int x과리스트를 얻어이 재귀 함수를 만들려고하고리스트에서 요소의 제 x 양 제거있어 일치 : let rec nthcdr int_t list_t =
match int_t with
| 0 -> list_t
| _ -> (match list_t with
| [] -> []
| h::tail -> nth