Possible Duplicate:
Practical examples of using symbols in Scala?
What is the reason of having symbols in Scala if strings are immutable? After what I know symbols are used when the identity is important, this means that the symbols are interned and two symbols with the same character value would be the same object. But isn't this already done to strings in Scala if the strings are from the Java language (where they are immutable and interned)?
If I have misunderstood symbols or you can provide more information about why they are needed/used I would be happy to learn:)