The current max literal length is capped at 512 bytes (exceeding it results in a TooManyBytes error which can be worked around with string concatenation, but it is oftentimes a tedious process) but many applications require a higher limit.
I'm not 100% sure what a good ceiling would be though, maybe 8192 bytes?
The current max literal length is capped at 512 bytes (exceeding it results in a
TooManyBytes
error which can be worked around with string concatenation, but it is oftentimes a tedious process) but many applications require a higher limit.I'm not 100% sure what a good ceiling would be though, maybe 8192 bytes?