Java <-> Free Pascal | Block statement
Java  
{ }
Description
{}{statement}{statement statement}Input
- statement - statements
Examples
Java
Block statement the possible of use:y=10;
if (x>1)
{
  x=1;
  y=y-1;
}
while (y>1)
{
  x++;
  y--;
}
.
Block statement in another programming language:
Differences to: