view test/nest/nest_eval.m @ 20279:db30302bedc3

Added tag rc-4-0-0-3 for changeset 065f933ef083
author John W. Eaton <jwe@octave.org>
date Fri, 10 Apr 2015 14:41:21 -0400
parents 44d6ffdf9479
children
line wrap: on
line source

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

  function nested ()
    eval (b);
  endfunction
endfunction