start of new file
[IRC.git] / Robust / src / Tests / StringBufferTest.java
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 }