first commit
This commit is contained in:
16
HelloWorld/Java/helloworld.java
Normal file
16
HelloWorld/Java/helloworld.java
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Implementation note: for simplicity in the makefiles, we violate the
|
||||
* Coding standard for the name. Rather than use HelloWorld, we write
|
||||
* helloworld to match the file name.
|
||||
* It's not the best reason, but it means the makefiles wont build stuff
|
||||
* that is already built.
|
||||
*/
|
||||
class helloworld
|
||||
{
|
||||
// Your program begins with a call to main().
|
||||
// Prints "Hello, World" to the terminal window.
|
||||
public static void main(String args[])
|
||||
{
|
||||
System.out.println("Hello, World");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user