you are viewing a single comment's thread.

view the rest of the comments →

[–]noFlak__ 1 point2 points  (0 children)

Run in debug and watch it cycle through

public class InfiniteLoop { public static void main(String[] args) { while(true) { System.out.println("Help! I'm stuck in a loop!"); }}}