Mercurial > hg > octave-nkf
view test/nest/scope1.m @ 15038:ab18578c2ade
doc: Update docstrings for built-in functions to not use "Loadable Function" as type.
* data.cc, debug.cc, help.cc, ov-oncleanup.cc, sparse.cc: Update docstrings
for built-in functions to use "Built-in Function" as type.
author | Rik <rik@octave.org> |
---|---|
date | Fri, 27 Jul 2012 14:37:37 -0700 |
parents | be18c9e359bf |
children |
line wrap: on
line source
# scope1.m function scope1 (n) value = n; if value C; end function A B; function B scope1 (0); endfunction endfunction function C D; function D A; endfunction endfunction endfunction