// A Beginning Programmer's Guide to Java

// Semicolon demonstration 3: Going Mad with Semicolons
// By Mark Graybill, June 2008

// Used in the article 'Those Pesky Semicolons'
// at http://beginwithjava.blogspot.com/2008/06/those-pesky-semicolons.html

// This version shows how you can add "too many" semicolons to a
// program. While it's best to understand the semicolon's proper
// use and use it only when necessary, if you just don't care any
// more you can throw semicolons around everywhere--almost--and
// get away with it.

// See the article to learn more.

// Semicolons are cheap, so I use them everywhere! ;
public class Semicolon3{;
    public static void main(String arg[]){;
        if (true){;
            System.out.println("argl bargl");
        };   // end of if;
    };
};