modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / expression
blob7040e8d3217083ad0cbba218f45981fcfb9d3c14
1 Expression sequences
3     This is a sequence of statements, of which expression statements
4     are the commonest case.  Statements are separated with semicolons,
5     and the newline character generally ends the sequence.  If any
6     statement is an expression by itself, or is associated with an
7     'if' statement which is true, then two special things can happen.
8     If the sequence is executed at the top level of the calculator,
9     then the value of '.' is set to the value of the last expression.
10     Also, if an expression is a non-assignment, then the value of the
11     expression is automatically printed if its value is not NULL.
12     Some operations such as     pre-increment and plus-equals are also
13     treated as assignments.
15     Examples of this are the following:
17     expression              sets '.' to         prints
18     ----------              -----------         ------
19     3+4                         7                  7
20     2*4; 8+1; fact(3)           6               8, 9, and 6
21     x=3^2                       9                  -
22     if (3 < 2) 5; else 6        6                  6
23     x++                         old x              -
24     print fact(4)               -                  24
25     null()                      null()             -
27     Variables can be defined at the beginning of an expression sequence.
28     This is most useful for local variables, as in the following example,
29     which sums the square roots of the first few numbers:
31     local s, i; s = 0; for (i = 0; i < 10; i++) s += sqrt(i); s
33     If a return statement is executed in an expression sequence, then
34     the result of the expression sequence is the returned value.  In
35     this case, '.' is set to the value, but nothing is printed.
37 ## Copyright (C) 1999  Landon Curt Noll
39 ## Calc is open software; you can redistribute it and/or modify it under
40 ## the terms of the version 2.1 of the GNU Lesser General Public License
41 ## as published by the Free Software Foundation.
43 ## Calc is distributed in the hope that it will be useful, but WITHOUT
44 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
45 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
46 ## Public License for more details.
48 ## A copy of version 2.1 of the GNU Lesser General Public License is
49 ## distributed with calc under the filename COPYING-LGPL.  You should have
50 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
51 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
53 ## @(#) $Revision: 30.1 $
54 ## @(#) $Id: expression,v 30.1 2007/03/16 11:10:42 chongo Exp $
55 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/expression,v $
57 ## Under source code control:   1991/07/21 04:37:18
58 ## File existed as early as:    1991
60 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
61 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/