view test/nest/recursive_nest3.m @ 20176:42bb3a776c9f stable rc-4-0-0-4

maint: Bump version number for 4.0.0-rc4.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Apr 2015 12:17:57 -0400
parents be18c9e359bf
children
line wrap: on
line source

function x = recursive_nest3 ()
  y = 5;
  f (y);
  x = y;
  g (x);
  function f (y)
    y = 10;
  endfunction

  function g (x)
    x = 10;
  endfunction
endfunction