home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / strings / Str.java next >
Text File  |  1996-09-28  |  180b  |  10 lines

  1. class Str {
  2.     public static void main (String args[]) {
  3.         String str = "1234567890";
  4.         StringBuffer a = new StringBuffer(str);
  5.         a.insert(2, "abcd");
  6.         System.out.println(a);
  7.     }
  8. }
  9.  
  10.