view test/bug-38565.tst @ 20176:42bb3a776c9f stable rc-4-0-0-4

maint: Bump version number for 4.0.0-rc4.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Apr 2015 12:17:57 -0400
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");