Intended to be cloned down as an eclipse workspace, then open the projects.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

29 lines
600 B

// Package Declaration -- says where the file should be
package uwstout.courses.cs144.examples;
// <visibility> class <name> { }
/**
* This is the primary entry point into our program
*
* @author Brett Bender
* @version 2022.9.15
*
*/
public class Example {
// add code here
/**
* Provides the primary entry point into the program
*
* @param args Command line arguments
*/
public static void main(String[] args) {
System.out.println("Hello, World!");
// The answer is 42.
System.out.printf("The answer is %d.\n", 42);
System.out.println("Name\tAge\nBilly\t15");
}
}