Why is `"\0A"` the default `end` value for `print`?
I saw this in some hover text in vscode and wondered if that was correct. Sure enough the docs confirm this.
I sort of understand the null termination, but why the
In the future, can we expect
e.g., in python, I can do
I sort of understand the null termination, but why the
'A' after the null byte?In the future, can we expect
print to handle null bytes?e.g., in python, I can do
printTs StringSlice[StaticConstantOrigin] = StringSlice("\0A"), flush FileDescriptor = FileDescriptor(1))

