fixed it for u, nerd

This commit is contained in:
Chad Thundercock 2019-09-21 19:52:16 -05:00
parent faf738cc2b
commit 997a980a98

View File

@ -1,10 +1,24 @@
/** hello world /*
* by vala, because everyone should start somewhere * Vala Printer
* copy as you like, it wont be any good *
* Copyright (c) 2019 Vala Printer. All Rights Reserved
*
* Everyone is permitted to copy and distribute verbatim or modified
* copies of this license document, and changing it is allowed as
* long as the name is changed.
*
* NO WARRANTY EXPRESS OR IMPLIED
*/ */
public class HelloWorld{ /**
public static void main(String[] args){ * Prints a hello message to the console.
System.out.print("hello world!"); *
* @version 1.0 16 Sep 2019
* @author Vala Printer
*/
public class HelloWorld {
public static void main(String[] args) {
System.out.print("hello world!");
} }
} }