12 lines
185 B
Text
12 lines
185 B
Text
--<
|
|
Get nth argument
|
|
|
|
Takes:
|
|
INT: The argument (as an index of argv)
|
|
|
|
Returns:
|
|
STR: The argument
|
|
>--
|
|
fun get_arg [ int ] str eo
|
|
8 mul argv add deref
|
|
end
|