madhurima das <[EMAIL PROTECTED]> wrote:
>  I have the following problem:

Looks like the previous time you posted this.

[...]
> my @z = system("assign.f",'$x','$y');
[...]

Read the perlfunc manpage on system.

1. system does return a scalar.

2. that scalar is not the output of the program
you called.

3. the Fortran code you are calling does not expect
parameters on the command line. It tries to read them
from standard input.

4. you're trying to run Fortran source code. That will
not work.

HTH,
Thomas

PS: No, I will not do your homework for you.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to