problem passing argument to function

2005-12-28 Thread Khairul Azmi
Hi all, I have this problem when trying to pass an argument to a function. The following codes suppose to handle continual characters (the one that end up with character \ to indicate a new line). That one works using a solution I found on the web but the problem is when I tried to pass the

Re: problem passing argument to function

2005-12-28 Thread Adriano Ferreira
On 12/28/05, Khairul Azmi [EMAIL PROTECTED] wrote: That one works using a solution I found on the web but the problem is when I tried to pass the argument to a function declared in the same file, the argument somehow became null. sub sample_function { print go in $_\n; -