| Author |
Comment/Response |
Bill Simpson
|
09/14/12 6:10pm
(*Interesting, three lines in one cell with only a newline between the lines in the cell*)
In[1]:= a=4;
Remove[a];
a:=1
In[4]:= ?a
Global`a
a:=1
(*Quit local kernel and start again*)
(*One line in one cell with no newlines in the cell*)
In[1]:= a=4;Remove[a];a:=1
In[2]:= ?a
From In[2]:= Information::notfound: Symbol a not found. More…
URL: , |
|