"K" is a System` Symbol
- To: mathgroup at smc.vnet.net
- Subject: [mg36026] "K" is a System` Symbol
- From: mark at markfisher.net (Mark Fisher)
- Date: Tue, 13 Aug 2002 05:22:49 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
I just learned that K is a System` Symbol:
Information[K]
Context[K]
I learned this due to an error message:
Block[{K = 1}, Sum[j, {j, i}]]
The same message can be generated by the following:
K := 1
Sum[j, {j, i}]
The message can be eliminated by Removing K:
Remove[K]
Block[{K = 1}, Sum[j, {j, i}]]
K := 1
Sum[j, {j, i}]
Surely, this is not intentional.
--Mark.