view test/nest/nest_eval.m @ 20547:8164c580922b

plotmatrix.m: Fix regression in %!demo introduced by in-place operators. * plotmatrix.m: Rename nargin variable to narg variable to avoid shadowing nargin() function.
author Rik <rik@octave.org>
date Fri, 25 Sep 2015 13:05:01 -0700
parents 44d6ffdf9479
children
line wrap: on
line source

function x = nest_eval (a, b)
  eval (a);
  nested ();

  function nested ()
    eval (b);
  endfunction
endfunction