RosettaCodeData/Task/Command-line-arguments/Amazing-Hopper/command-line-arguments-5.hopper
2023-07-01 13:44:08 -04:00

12 lines
489 B
Text

#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)