view test/bug-38565.tst @ 19610:e97c63531e76

doc: Periodic grammarcheck of documentation. * func.txi: Use @noindent for examples in the middle of sentences. * warning_ids.m: Aline @item in table.
author Rik <rik@octave.org>
date Tue, 13 Jan 2015 22:06:39 -0800
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");