/***************************************************************** * Hello World * Programmer: Insert your name here * * Due Date: * Class: CSCI 51-01 Instructor: Joshua Stough * * Description: This program prints out a greeting to the world. * * Input: None * * Output: A friendly greeting * * Questions: * 1) What was the result of compiling after you deleted the * curly brace ({)? * * 2) What was the result of compiling after you deleted the * semicolon? * * 3) Add an additional double quote (") inside the * "Hello world!". what is the resultant compile? ******************************************************************/ import java.text.*; public class Hello_World { public static void main(String[] args) { System.out.println ("Hello World!"); } }