outdent

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


Parameters

outdent text :string :literal :pathliteral

Attributes

n :integer unpad by given number of spaces
with :string use 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