view test/nest/script_nest.m @ 31610:3b7852a822e8

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Fri, 02 Dec 2022 10:12:40 -0500
parents fc4bb4bd1d5e
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