view test/nest/scope2.m @ 20269:3ccc2d02e64b stable release-4-0-0

Version 4.0.0 released. * configure.ac (OCTAVE_VERSION): Now 4.0.0. (OCTAVE_MAJOR_VERSION): Now 4. (OCTAVE_MINOR_VERSION): Now 0. (OCTAVE_PATCH_VERSION): Now 0. (OCTAVE_RELEASE_DATE): Set to 2015-05-23.
author John W. Eaton <jwe@octave.org>
date Sat, 23 May 2015 10:35:40 -0400
parents be18c9e359bf
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