home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
test
/
octave.test
/
unwind
/
unwind-2.m
< prev
next >
Wrap
Text File
|
1996-09-28
|
188b
|
15 lines
global g = -1;
function f (x)
global g;
save_g = g;
unwind_protect
g = 0
[1,2;x];
g = 1
unwind_protect_cleanup
g = save_g;
end_unwind_protect
endfunction
f (3)
g