view test/nest/scope2.m @ 31213:bc385e42e09a

NEWS.8.md: Announce new legend property "itemhitfcn" * NEWS.8.md: Announce new legend property "itemhitfcn".
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Mon, 29 Aug 2022 18:36:17 +0200
parents fc4bb4bd1d5e
children
line wrap: on
line source

## scope2.m
function scope2
  C;
  function A
    B;
    function B
      D;
    endfunction
  endfunction

  function C
    D;
    function D
      A;
    endfunction
  endfunction
endfunction