view test/nest/script_nest_2.m @ 31201:a8b0acc018a2

maint: merge stable to default
author Rik <rik@octave.org>
date Wed, 24 Aug 2022 08:55:39 -0700
parents fc4bb4bd1d5e
children
line wrap: on
line source

## script_nest.m
function r = script_nest_2 (x)
  function r = nest_fun ()
    r = 13;
  endfunction
  script_nest_script_2;
endfunction