view test/bug-38565.tst @ 24892:2e94172bc1c1 stable

maint: update GPL license text and license header blocks * COPYING: Update to the latest upstream license text from gnu.org. * doc/liboctave/gpl.texi: Likewise. * __alltohandles__.m, __default__input__.m, tfqmr.m: Update GPLv3 license header punctuation and formatting for consistency.
author Mike Miller <mtmiller@octave.org>
date Wed, 14 Mar 2018 22:26:31 -0700
parents 194eb4bd202b
children 6652d3823428
line wrap: on
line source

## Copyright (C) 2013-2017 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.

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

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