System Command ERASE

From NARS2000
Revision as of 17:37, 27 January 2015 by Robert Wallick (talk | contribs) (Bolded use of )ERASE, added link to ⎕EX)
Jump to navigationJump to search

The )ERASE command erases or deletes the named function(s) or variable(s) in the current workspace. The workspace is not changed on disk unless you )SAVE the workspace. Once a variable or function is )ERASEd it is no longer defined. Attempting to erase a non-existent function or variable returns an error message. )ERASE with no arguments has no effect; to erase everything in the workspace, use the )CLEAR command to start a fresh, clear workspace.

Example

      )vars
a0 q
      pi←3.1415926
      )fns
function function2
      )vars
a0 pi q
      ⎕vr 'function'
    ∇ function
[1]   "this is a function"
[2]
    ∇ 2013 3 13 11 5 38 975 (UTC)
      ⎕vr "function2"
    ∇ function2
[1] 'This is another function'
[2]
    ∇ 2013 3 13 11 6 0 350 (UTC)
      )ERASE
      )fns
function function2
      )vars
a0 pi q
      )ERASE function2 pi
      )fns
function
      )vars
a0 q
      )ERASE q f
NOT ERASED: f
      )vars
a0


See also: Quad EX or ⎕EX

System Commands (not case sensitive)
)CLEAR )CLOSE )COPY )DROP )EDIT )ERASE )EXIT )FNS )FOP )FOPS
)IN )INASCII )LIB )LOAD )NEWTAB )NMS )OFF )OPEN )OPS )OUT
)RESET )SAVE )SI )SIC )SINL )SYMB )ULIB )VARS )XLOAD )WSID


See Also
System Commands System Variables and Functions Operators


Keyboard
A+S
Alt ¨ ¯ < > × ÷
Sh ~ ! @ # $ % ^ & * ( ) _ +
Key ` 1 2 3 4 5 6 7 8 9 0 - =
A+S
Alt ? § π
Sh Q W E R T Y U I O P { } |
Key q w e r t y u i o p [ ] \
A+S
Alt
Sh A S D F G H J K L : "
Key a s d f g h j k l ; '
A+S χ
Alt
Sh Z X C V B N M < > ?
Key z x c v b n m , . /
NARS 2000 Lang
Tool
Bar
+ - × ÷ * ! ? |
< = >
~ § π .. ,
/ \ ¨ .
_ ¯
Second Row i j k i j k l g p r v x

[[Category:Mouse Group {{{1}}}|{{{2}}}]]