I have used it a lot in java for hiding temp varia...
# getting-started
s
I have used it a lot in java for hiding temp variables like:
Copy code
String res;
{
    String temp1 = ...
    String temp2 = ...
    res = computation on temps
}