0
0
This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
legacy-code/test/strings.jce
2022-09-01 19:02:38 +02:00

13 lines
385 B
Plaintext

echo "Here comes a quote: \"Lorem ipsum\". This had to be escaped!\n"
echo "Here comes another quote: 'Lorem ipsum'. This didn't require escaping!\n"
echo "multiple" "strings" "to" "echo" "\n"
echo "Escape sequences work: \u2764\ufe0f"
echo 'Escape sequences are printed as-is: \u2764\ufe0f'
echo "\t" "indent x1"
echo "\t\t" "indent x2"
echo "\t" "\t" "indent x2"
echo "indent x0"