caml-light

    0熱度

    1回答

    我玩的是-作爲一元操作符和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) ; c (9 -

    0熱度

    1回答

    我試圖使這個遞歸函數它接受一個int x和一個列表,然後去除第一x量從列表中要素的: let rec nthcdr int_t list_t = match int_t with | 0 -> list_t | _ -> (match list_t with | [] -> [] | h::tail -> nthcdr (int_t -1)