view test/nest/script_nest.m @ 33608:5fba13104493 bytecode-interpreter tip

maint: merge default to bytecode-interpreter.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Sat, 18 May 2024 22:40:00 -0400
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