view test/bug-38565.tst @ 20628:9e9e67845bbe

build: Set TEXMFVAR to ensure TeX cache files can be written to build dir * doc/module.mk (TEXMFVAR): New variable, export to environment. (TEXINPUTS): Include $(abs_top_builddir)/doc/.texmf-var// in the list. (doc-clean): Delete doc/.texmf-var.
author Mike Miller <mtmiller@octave.org>
date Sun, 02 Aug 2015 11:05:13 -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");