Okay so I heard that java Strings are Immutable, Constants. fair enough, but that means they cannot change right?
So how come I can do this:
has mystr not being changed?? if I ran a println on mystr i know i would get the meplusonethousand output??? why is this? or do I just not get immutable lolCode:String mystr="me";
mystr="meplusonethousand";

