Java tutorial
//package com.java2s; // License as published by the Free Software Foundation; either public class Main { private static void indent(StringBuffer buffer, int indent) { for (int loop = 0; loop < indent; loop++) { buffer.append(" "); } } }