You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"\u{01}" is invalid syntax. Elm suggests "\u{001}" instead, which is also invalid and funnily it suggests going back to "\u{01}" :)
> "\u{01}"
|
-- BAD UNICODE ESCAPE ----------------------------------------------------- REPL
Every code point needs at least four digits:
3| "\u{01}"
^^^^^^
Try \u{001} instead?
> "\u{001}"
|
-- BAD UNICODE ESCAPE ----------------------------------------------------- REPL
Every code point needs at least four digits:
3| "\u{001}"
^^^^^^^
Try \u{01} instead?
It gives a correct suggestion for "\u{1}":
> "\u{1}"
|
-- BAD UNICODE ESCAPE ----------------------------------------------------- REPL
Every code point needs at least four digits:
3| "\u{1}"
^^^^^
Try \u{0001} instead?
The text was updated successfully, but these errors were encountered:
"\u{01}"
is invalid syntax. Elm suggests"\u{001}"
instead, which is also invalid and funnily it suggests going back to"\u{01}"
:)It gives a correct suggestion for
"\u{1}"
:The text was updated successfully, but these errors were encountered: