Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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("   ");
        }
    }
}