in reply to Re: returning tied array
in thread returning tied array
calling objects is done a different way! :P if your going to pass hashes there is another way to do it, but ya gonna have to ask! :P@MyArray = &YourFunction(pass variables here); ## or $MyString = &YourFunction(pass variables here); ##might work! -------------- sub YourFunction{ @array =@_; (do something) return $YourString; ##wich ya get a string return @YourArray; ##wich ya get an array, i think the array objects seperated by spaces! (and furthermore you can change the space to something else through a special command to the perl interperter! :P ) } ---------------
c ya, have fun! www.arobcorp.com
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: returning tied array
by AK108 (Friar) on Jan 08, 2007 at 02:36 UTC | |
by chromatic (Archbishop) on Jan 08, 2007 at 04:52 UTC | |
by AK108 (Friar) on Jan 08, 2007 at 13:57 UTC |