failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git] / help / freeglobals
1 NAME
2     freeglobals - free memory used for values of global variables
3
4 SYNOPSIS
5     freeglobals()
6
7 TYPES
8     return      null value
9
10 DESCRIPTION
11     This function frees the memory used for the values of all global
12     and not unscoped static variables by assigning null values.
13     The oldvalue (.) is not freed by this function.
14
15 EXAMPLE
16     > global a = 1, b = list(2,3,4), c = mat[3]
17     > static a = 2
18     > show globals
19
20     Name    Level    Type
21     ----    -----    -----
22     a          1     real = 2
23     a          0     real = 1
24     b          0     list
25     c          0     matrix
26
27     Number: 4
28     > freeglobals()
29     > show globals
30
31     Name    Level    Type
32     ----    -----    -----
33     a          1     null
34     a          0     null
35     b          0     null
36     c          0     null
37
38     Number: 4
39
40 LIMITS
41     none
42
43 LINK LIBRARY
44     none
45
46 SEE ALSO
47     free, freestatics, freeredc
48