Jump to content
  • 0
Atomik

Help me understand What is getarg(0)

Question

Hey Guys,

So i'm trying to learn how to script from herc Documentation and m stuck at getarg() i cant understand what exactly it does , if possible can any one please explain it to me.
PLEASE <3 

 

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0
function foobar {
    .@first_argument$ = getarg(0); // get the value of the first argument passed to foobar()

    .@output$ = "Hello " + .@first_argument$; // add the value of the first argument to "Hello"

    return .@output$; // exit the function, while returning the value of .@output$
}




mes(foobar("world")); // Hello World

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.