view test/bug-38565.tst @ 20307:c2206fda3986

graphics.cc: Clean up variable names, line wrapping, comments, etc. Try to use meaningful, and consistent variables names. * graphics.cc: Clean up variable names, line wrapping, comments, etc.
author Rik <rik@octave.org>
date Mon, 22 Jun 2015 16:40:39 -0700
parents b9e510a1f308
children
line wrap: on
line source

%!function r = f (x)
%!  if (ischar (x))
%!    r = x;
%!  else
%!    error ("expecting character string");
%!  endif
%!endfunction

%!assert (eval ("f 10;"), "10");