view test/nest/script_nest.m @ 20176:42bb3a776c9f stable rc-4-0-0-4

maint: Bump version number for 4.0.0-rc4.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Apr 2015 12:17:57 -0400
parents be18c9e359bf
children
line wrap: on
line source

# script_nest.m
function x = script_nest
  A (5)
  function A (n)
    if n <= 0
      script_nest_script;
    else
      A (n - 1);
    endif
  endfunction
endfunction