How would I express the following java code in scala?
a = b = c;
By the way, I\'m re-assigning variables (not declaring).
b = c; a = b
Awkward, I know. That's Scala pretty much telling you "don't do that". Consider it the Scala version of Python's space identation for block delimitation.