Java tutorial
public class Main { public static void main(String args[]) { StringBuffer buffer = new StringBuffer(); boolean booleanValue = true; buffer.insert(0, booleanValue); System.out.println(buffer.toString()); } }