DownValues::vrule
UpValues::vrule
OwnValues::vrule
FormatValues::vrule
DefaultValues::vrule
NValues::vrule
Messages::vrule
SubValues::vrule
The element on the right-hand side of the assignment is not a rule:
Messages[fsym] = {"text of message"}This shows a valid assignment for the messages of a symbol:
Messages[fsym] = {HoldPattern[fsym::tag] :> "text of message"}The same message can be introduced using an ordinary assignment:
fsym::tag = "text of message"This shows the message that was introduced by the assignment:
Messages[fsym]