- :string
- or :nothing
outdent
outdent each line of given text, by using minimum shared indentation
Parameters
outdent text :string :literal
Attributes
n | :integer | unpad by given number of spaces |
with | :string | use given padding |
Returns
Examples
copyprint outdent {: one two three :} ; one ; two ; three
copyprint outdent.n:1 {: one two three :} ; one ; two ; three