home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 09 / bob / hello.bob < prev    next >
Text File  |  1991-07-11  |  110b  |  9 lines

  1. main()
  2. {
  3.     s1 = "Hello";
  4.     s1 += ',';
  5.     s2 = ' ';
  6.     s2 += "World!";
  7.     print(s1+s2+'\n');
  8. }
  9.