home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / cmplangm / 1989_6 / awk / hello.awk < prev    next >
Text File  |  1987-12-10  |  56b  |  5 lines

  1. BEGIN {
  2.         print "Hello World!"
  3.         exit
  4. }
  5.