Created
January 17, 2017 17:05
-
-
Save bearlikelion/981925c4fbc62ce503a03fac9acbf19c to your computer and use it in GitHub Desktop.
Bob Lane's Java Homework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name of our program's project | |
public class HelloWorldHomework | |
{ | |
// the main() function is the start of an application | |
// static means it will never change | |
// void means there is no expected return | |
// String[] args is a requirement to pass arugments into the initilization of an application | |
public static void main(String[] args) | |
{ | |
// System.out(put). print line | |
// documentation: http://docs.oracle.com/javase/1.5.0/docs/api/java/io/PrintStream.html#println(java.lang.String) | |
System.out.println("Hello Bob Lane!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment