view test/fcn-handle/shared-ctx.tst @ 31218:a33a9c87220b stable

imformats.m: Fix "isa" function in return value (bug #62974) * imformats.m (isa_magick): Fix typo "Format" to "format" for name of field in struct returned from __magick_ping__.
author Rik <rik@octave.org>
date Tue, 30 Aug 2022 15:24:29 -0700
parents 8dd50efa3c47
children
line wrap: on
line source

## Test that multiple handles to nested functions created in the same
## context share that call stack context, but that separately created
## handles have a separate (shared) context.

%!test
%! [add10, sub10, mul10, div10] = shared_ctx (10);
%! [add100, sub100, mul100, div100] = shared_ctx (100);
%! assert (add10 (2), 12);
%! assert (add100 (20), 120);
%! assert (sub10 (4), 8);
%! assert (sub100 (40), 80);
%! assert (mul10 (5), 40);
%! assert (mul100 (50), 4000);
%! assert (div10 (4), 10);
%! assert (div100 (40), 100);