I am trying MetaOCaml, so I have made this fantastic code :
#let a = .<1>.;;
val a : int code = .<1>.
# let b = !. a;;
Error: Unbound value !.
# let b = .!a;;
Error: Syntax error
Why doesn't it work ?
Also, I have tried !.
and .!
because I have seen both on websites but don't know which one is the right one.