# Basics
literal \$\%\$\*\'
\s\p\e\c\i\a\l
'quoted stuff \a\b\.\"\' \\'

# Stuff with <
<?before lookarounds>
<call>
$<named-capture>=[some stuff]

# Variables
:my $*some-var = 5;
:my $*another-var;

# Interpolation
$some-var $*other-var @array-var %not-a-var
<$some-var>
$(if True { "yes" } else { "no" })
<{if True { "yes" } else { "no" }}>

# Code
{ if $I-don't-like-this { False } }
