- or download this
use warnings;
...
outer("abc");
outer("def");
- or download this
Variable "$var" will not stay shared at line 7.
abc
abc
- or download this
use Math::RungeKutta;
...
($t, @y) = rkXXX(\@y, \&dydt, $t, $dt);
...
}
- or download this
use Math::RungeKutta;
...
($t, @y) = rkXXX(\@y, $dydt, $t, $dt);
...
}