Character literals should work similar to the ones in Zig:
A character literal contains either a escaped value ('\n') or a utf-8 sequence that will be translated into the corresponding code point ('😊'). A character literal will have the type number.
Character literals should work similar to the ones in Zig: A character literal contains either a escaped value (
'\n'
) or a utf-8 sequence that will be translated into the corresponding code point ('😊'). A character literal will have the typenumber
.