home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / useful / dev / e / amiga_e / src / args / getargs.e next >
Encoding:
Text File  |  1992-09-02  |  154 b   |  6 lines

  1. /* get command line args. note that `arg' is a predefined E-var */
  2.  
  3. PROC main()
  4.   WriteF(IF arg[]=0 THEN 'No Args!\n' ELSE 'You wrote: \s\n',arg)
  5. ENDPROC
  6.