Hello all,
I am having an issue with using Characters in Eff
Whenever I use it, it says "unrecognised symbol" or "parser error"
The main reason why I want to use it is to be able to use the Split function from OCaml
external split_on_char : char -> string -> string list = "split_on_char"
I did everything to add Char as a type and it compiled << you can see that in my Pull-request
but I noticed that it cannot parse Char properly << maybe the single quote is the problem
let m = '4';;
let k = 's' ;;
Hello all,
I am having an issue with using Characters in Eff
Whenever I use it, it says "unrecognised symbol" or "parser error"
The main reason why I want to use it is to be able to use the Split function from OCaml
I did everything to add Char as a type and it compiled << you can see that in my Pull-request
but I noticed that it cannot parse Char properly << maybe the single quote is the problem