| 1 | Word Language |
| 2 | |
| 3 | [Quotes] ysh-string "x is $x" $"x is $x" r'[a-z]\n' |
| 4 | u'line\n' b'byte \yff' |
| 5 | triple-quoted """ $""" r''' u''' b''' |
| 6 | X tagged-str "<span id=$x>"html |
| 7 | [Substitutions] expr-sub echo $[42 + a[i]] |
| 8 | expr-splice echo @[split(x)] |
| 9 | var-splice @myarray @ARGV |
| 10 | command-sub @(cat my-j8-lines.txt) |
| 11 | [Formatting] X ysh-printf ${x %.3f} |
| 12 | X ysh-format ${x|html} |