/* BlockComment.java CIS 160 David Klick 2015-09-02 Simple demonstration of block comments used for documentation. */ /* Every application you write will start with a public class. The file name you save this as MUST match the public class name exactly - INCLUDING the case of the letters. This file must be named: BlockComment.java Compile using: javac BlockComment.java Run using: java BlockComment */ public class BlockComment { public static void main(String[] args) { /* Every application starts at main(String[] args). This program has no code, so it will compile and run, but you won't see it do anything when it runs. */ } }