I have seen a weird version of the for loop where only (;;)
is used to write something, for example:
for (;;) {
System.out.println("dabarkai");
}
My guess is that it behaves similarly like a while(true) loop. But if there are some diferences in their actions then your more than welcome to share them here.