Program name: Difference between revisions

Content added Content deleted
(added langur language example)
Line 1,009: Line 1,009:
=={{header|langur}}==
=={{header|langur}}==
The script name is in the _script variable (separate from the arguments, in the _args variable).
The script name is in the _script variable (separate from the arguments, in the _args variable).
<lang langur>#! /usr/bin/langur
<lang langur>writeln "script: ", _script

writeln "script: ", _script
writeln "script args: ", _args
writeln "script args: ", _args
</lang>
</lang>