-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Char #41
Comments
The single quote currently has no special meaning in Eff as far as I could tell from the lexer. Are you sure you cannot make a similar function that just uses strings instead of char? |
I like the other idea more Thanks |
I used this method to get the first char of the string which is the only one val get : string -> int -> char Thanks! |
@zigaLuksic : it's not that much work. It sounds like half an hour of work, so it's probably about two hours of work. |
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
The text was updated successfully, but these errors were encountered: