Command-line arguments: Difference between revisions

m (→‎{{header|TXR}}: Drop @(do ...))
Line 480:
Command line argument value for option 'h' is: gamma
</pre>
 
=={{header|Elena}}==
<lang elena>#import system.
#import system'routines.
#import extensions.
 
#symbol program =
[
'program'arguments run &every:(&index:i)
[ console writeLine:"Argument ":i:" is ":('program'arguments@i). ].
]
</lang>
 
=={{header|Emacs Lisp}}==
Anonymous user