home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
prog_oth
/
turbodex.lha
/
examplesources
/
GetArgs.dex
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-10-11
|
210 b
|
11 lines
/* get command line args */
PROC main(ARG)
MCHAR argadr+argl-1,0 /* now terminate argstring with a 0 */
IF argl=1
WRITE 'No Args!\n'
ELSE
WRITE 'You wrote: \s\n',argadr
ENDIF
ENDPROC