blob: 0547e9bd435ea80dbbd601e1ee09b8855f45705d [file] [log] [blame]
thincacf8695d2024-01-28 18:57:23 +01001" String
2
3echo 'It''s a string'
4echo 'tab: \t, new line: \n, backslash: \\'
5echo "tab: \t, new line: \n, backslash: \\"
6
7" String interpolation
8
9echo 'Don''t highlight interpolation: {{ {1 + 2} }}'
10echo "Don't highlight interpolation: {{ {1 + 2} }}"
11echo $'Highlight interpolation:\t{{ { string({'foo': 'bar'}) } }}'
12echo $'Highlight interpolation:\t{{ { $'nested: {{ {1 + 2} }}' } }}'
13echo $"Highlight interpolation:\t{{ { string({"foo": "bar"}) } }}"
14echo $"Highlight interpolation:\t{{ { $"nested: {{ {1 + 2} }}" } }}"