// demo0 David I. Schwartz 1/2000 // task: write a program that forms a template for other programs // This program essentially does nothing but comile and run. public class demo0 { // this is the class that contains "main" public static void main(String[] args) { // this is the "main" method } // this brace closes the brace after "args)" } // this brace closes the brace after "demo0"