Jan-15-2020, 12:43 AM
every possible unambiguous way people might want to express one of the 256 possible byte codes, where the first 128 are ASCII codes, i want to be able to support. probably the most well known example is
are there any others that would be suggested?
my intent is to make this into its own module.
\n
which is the value 10, ASCII newline. i will be reviewing past code i have written to convert a stream of the expression to a stream of 8-bit bytes. it already supports raw printable characters except for \ and ^, 3 digit octal escape sequences for all 256 possible values, \0 not followed by a digit, common single character backslash sequences \a (7), \b (8), \t (9), \n (10), \v (11), \f (12), \r (13), 59 common single character carat sequences, 26 upper case letters, 26 lower case letters, and 7 special characters, and 4 special sequences to produce \ and ^.are there any others that would be suggested?
my intent is to make this into its own module.