view test/nest/script_nest.m @ 20600:1d6ab08edcde stable

Add Ethan Biery to list of contributors
author Philip Nienhuis <prnienhuis@users.sf.net>
date Thu, 01 Oct 2015 22:38:34 +0200
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