outdent

outdent each line of given text, by using minimum shared indentation


Parameters

outdent text :string :literal

Attributes

n:integerunpad by given number of spaces
with:stringuse given padding

Returns

  • :string
  • or  :nothing

Examples

copy
print outdent {: one two three :} ; one ; two ; three

copy
print outdent.n:1 {: one two three :} ; one ; two ; three

Related