This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 class StringBufferTest {
2     public static void main(String str[]) {
3         String a="hello world";
4         StringBuffer b=new StringBuffer(a);
5         b.append(a);
6         System.printString(b.toString());
7     }
8 }