The "Unknown:"s below indicate that an entry is incomplete.
{ ... } | block (grouping statements, especially when statements are not expressions) |
# | commenting (until end of line) |
b | breaking control flow (goto (unconditional jump)) |
t label | if_then |
; | sequence |
end-of-line | sequence |
s/.{n}(.).*/\1/ | accessing n-th character |
s/.{n}(.{len}).*/\1/ | extract a substring |
p or i | simple print (on strings) |
\U / \L / \C | upper / lower case character |
/elt/ | is an element in the list |