view test/nest/nest_eval.m @ 20354:227d582fa300 stable

build: Sort generated PKG_ADD contents consistently * libinterp/mk-pkg-add: Set LC_COLLATE=C when sorting for consistent output.
author Mike Miller <mtmiller@octave.org>
date Fri, 10 Jul 2015 01:10:30 -0400
parents 44d6ffdf9479
children
line wrap: on
line source

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

  function nested ()
    eval (b);
  endfunction
endfunction