view test/nest/nest_eval.m @ 25324:4c14c002cabe stable rc-4-3-92

bump version for third 4.4 release candidate * configure.ac (AC_INIT): Set version to 4.3.92. (OCTAVE_PATCH_VERSION): Now 92. (OCTAVE_RELEASE_DATE): Set to 2018-04-27.
author John W. Eaton <jwe@octave.org>
date Fri, 27 Apr 2018 10:05:34 -0400
parents 44d6ffdf9479
children
line wrap: on
line source

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

  function nested ()
    eval (b);
  endfunction
endfunction