# File examples/dumpXML.rb, line 24
def indentationString(level)
    return ("\t" * (level >> 3)) + (' ' * (level & 7))
end