I just installed opam and installed the uint package. However when I attempt to do something like this
File : Hello.ml
let ash(mystring) = (
let basis = uint64.of_string("0xcbf29ce484221325") in
Printf.printf "Function Finished" ;
);;
ash("Hello");;
I get the error
Error: Unbound value uint64
Any suggestions on what I could be missing ? I am new to OCaml and opam
I used the following statement to compile the code in my OSX terminal
ocaml Hello.ml