modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / param
blobef91ba30676c9fc1903aa3a99e8011485c1969fa
1 NAME
2     param - value of argument in a user-function call
4 SYNOPSIS
5     param([n])
7 TYPES
8     n           nonnegative integer
10     return      any
12 DESCRIPTION
13     The function param(n) can be used only within the body of the
14     definition of a function.
16     If that function is f()
18         [[ which may have been defined with named arguments as in f(x,y,z))
20     and either the number of arguments or the value of an argument
21     in an anticipated call to f() is to be used, the number of
22     arguments in that call will then be returned by:
24         param(0)
26     and the value of the n-th argument by:
28         param(n)
30     Note that unlike the argv() builtin, param(1) is the 1st parameter
31     and param(param(0) is the last.
33 EXAMPLE
34     ; define f() {
35     ;;  local n, v = 0;
36     ;;  for (n = 1; n <= param(0); n++)
37     ;;          v += param(n)^2;
38     ;;  return v;
39     ;; }
41     ; print f(), f(1), f(1,2), f(1,2,3)
42     0 1 5 14
44 LIMITS
45     none
47 LINK LIBRARY
48     none
50 SEE ALSO
51     argv, command
53 ## Copyright (C) 1999-2006  Landon Curt Noll
55 ## Calc is open software; you can redistribute it and/or modify it under
56 ## the terms of the version 2.1 of the GNU Lesser General Public License
57 ## as published by the Free Software Foundation.
59 ## Calc is distributed in the hope that it will be useful, but WITHOUT
60 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
61 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
62 ## Public License for more details.
64 ## A copy of version 2.1 of the GNU Lesser General Public License is
65 ## distributed with calc under the filename COPYING-LGPL.  You should have
66 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
67 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
69 ## @(#) $Revision: 30.1 $
70 ## @(#) $Id: param,v 30.1 2007/03/16 11:10:42 chongo Exp $
71 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/param,v $
73 ## Under source code control:   1996/03/12 23:10:01
74 ## File existed as early as:    1996
76 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
77 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/