modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / oldvalue
blob124a43125556ae1d0a5e591dc2aae69a63cd4f56
1 NAME
2     . - oldvalue
4 SYNOPSIS
5     .  (with no adjacent letters or digits or _ or .)
7 TYPES
8     return      any
10 DESCRIPTION
11     The "old value" is essentially a global variable with identifier "."
12     which at top level when directly from a file or keyboard
13     is automatically assigned the saved value for a line
14     of statements when evaluation of that line is completed and this saved
15     value is not null.  A line of statements is normally completed by a
16     '\n' not within a block bounded by braces or an expression bounded by
17     parentheses.
19     Disabling of saving by calling saveval(0) causes lines to return a
20     null value and . then becomes in effect a global variable whose
21     value may be changed by assignments and operations like ++ and --.
23     A null value may be assigned to . by . = null() or free(.).
25 EXAMPLE
26     ; saveval(1);
27     ; a = 2
28     ; .
29             2
30     ; . += 3; b = . + 4
31     ; print ., b
32     9 9
33     ; . += 3; b = . + 4; null()
34     ; print ., b
35     12 16
36     ; list(a, b, a + b)
38     list (3 elements, 3 nonzero):
39             [[0]] = 2
40             [[1]] = 16
41             [[2]] = 18
43     ; saveval(0)
44     ; print pop(.), .[[1]]
45     2 18
47 LIMITS
48     none
50 LINK LIBRARY
51     none
53 SEE ALSO
54     saveval
56 ## Copyright (C) 1999  Landon Curt Noll
58 ## Calc is open software; you can redistribute it and/or modify it under
59 ## the terms of the version 2.1 of the GNU Lesser General Public License
60 ## as published by the Free Software Foundation.
62 ## Calc is distributed in the hope that it will be useful, but WITHOUT
63 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
64 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
65 ## Public License for more details.
67 ## A copy of version 2.1 of the GNU Lesser General Public License is
68 ## distributed with calc under the filename COPYING-LGPL.  You should have
69 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
70 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
72 ## @(#) $Revision: 30.1 $
73 ## @(#) $Id: oldvalue,v 30.1 2007/03/16 11:10:42 chongo Exp $
74 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/oldvalue,v $
76 ## Under source code control:   1997/09/06 20:03:35
77 ## File existed as early as:    1997
79 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
80 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/