10 lines
208 B
Text
10 lines
208 B
Text
class Main {
|
|
void main() {
|
|
int i;
|
|
|
|
// Note: In Javali, while() loops must have braces ({}) after them,
|
|
// so this is an expected syntax error.
|
|
while(true)
|
|
i = 1;
|
|
}
|
|
}
|