[ ] Add character literals similar to C syntax '<character>'
[ ] Character literals can accept escape sequences (maybe same solution for this and #4)
[ ] Character literals can be multibyte, ab = little_endian('a', 'b') = 0x6261. This makes possible 'hello\n\0' top print. Each character is one byte. Literal is padded with 0 to be 1, 2, 4 or 8 bytes long
'<character>'
ab
=little_endian('a', 'b')
=0x6261
. This makes possible'hello\n\0' top print
. Each character is one byte. Literal is padded with0
to be 1, 2, 4 or 8 bytes long