Help for this page

Select Code to Download


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