|
|
|
|
|
by MrMcCall
474 days ago
|
|
So an int has nothing to do with an Int32 or Int64. Thanks for your patient elucidation. This means the semantics for Int32 and Int64 are COMPLETELY different than that of an int. My problem is that I come from the C world, where an int is simply derived from either a 32- or 64-bit integer, depending on the target architecture. OCaml's runtime is not a system designed for systems-level programming. Thanks again. Now I know why the F# guys rewrote OCaml's fundamental int types from the get-go. |
|
Again, the semantics of Int is different but the semantics in OCaml of Int32 and Int64 is the same/standard. So you have 3 types: int, Int32 and Int64 and it is an static typed language.