The Dink Network

Reply to &arg# variables

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
December 9th 2008, 02:47 AM
dinkdead.gif
DinkC Ref. says that &arg# is 'The first (or 2nd, etc) argument passed to a procedure'. So in this case for example:

//script a
external("script_b", "blah", 54);

//script b, procedure blah
//&arg1 == 54

Will &arg1 be 54 for the rest of that procedure or is it possible that it might change? What I mean is, is it safer to do something like int &temp = &arg1; or is that unnecessary?