Method: #add_sp

Defined in:
lib/tokn/tools.rb

#add_sp(s, indent = 0) ⇒ Object

Append a particular number of spaces to a string



77
78
79
# File 'lib/tokn/tools.rb', line 77

def add_sp(s, indent = 0)
  s << ' ' * indent
end