13 lines
489 B
Plaintext
13 lines
489 B
Plaintext
#include <natural.h>
|
|
#include <hopper.h>
|
|
|
|
main:
|
|
get total arguments, and remember as 'total arguments'.
|
|
remember ("This program named: "),
|
|
now remember ( argument '1' ), and print with a new line.
|
|
secondly, declare 'i', take '2', and store in 'i'
|
|
do while ( variable 'i' is less or equal than 'total arguments', \
|
|
consider this ( {"Argument #",i," = "} );\
|
|
remember ( argument 'i' ); put a new line and print it; finally increment 'i' ).
|
|
exit(0)
|