Mercurial > hg > octave-nkf
view test/nest/recursive_nest3.m @ 20830:b65888ec820e draft default tip gccjit
dmalcom gcc jit import
author | Stefan Mahr <dac922@gmx.de> |
---|---|
date | Fri, 27 Feb 2015 16:59:36 +0100 |
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