Command-line arguments: Difference between revisions

Add Global Script example
No edit summary
(Add Global Script example)
Line 712:
NEXT
END</lang>
 
=={{header|Global Script}}==
 
This uses the <code>gsio</code> I/O operations, which are designed to be simple to implement on top of Haskell and simple to use. It also uses impmapM, which is a specific specialization of mapM for the HSGS implementation.
<lang Global Script>λ 'as. impmapM (λ 'a. print qq{Argument: §(a)\n}) as</lang>
 
=={{header|Go}}==