view test/nest/no_closure.m @ 17466:cf5a8fccfc63

area.m: Overhaul function to fix color cycling. * scripts/plot/area.m: Fix color cycling. Fix input validation and make it more precise. Add %!error tests for input validation.
author Rik <rik@octave.org>
date Wed, 18 Sep 2013 19:43:09 -0700
parents be18c9e359bf
children
line wrap: on
line source

# no_closure.m
function no_closure (n)
  if n == 0
    x = @no_closure;
  else
    f = @no_closure;
  endif

  function f
  endfunction
endfunction