How do I define an int64 in OCaml? -


let = 32 give me int32.

what if want define int64?

let = 32l  

(postfix l int64 literals introduced in objective caml 3.07)

and use module int64: http://caml.inria.fr/pub/docs/manual-ocaml/libref/int64.html should use google well...


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -