bottom-tier-java/HelloWorld.java

25 行
505 B
Java

2019-09-21 20:52:16 -04:00
/*
* Vala Printer
*
* 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
2019-09-16 07:31:19 -04:00
*/
2019-09-21 20:52:16 -04:00
/**
* Prints a hello message to the console.
*
* @version 1.0 16 Sep 2019
* @author Vala Printer
*/
public class HelloWorld {
public static void main(String[] args) {
System.out.print("hello world!");
}
2019-09-13 13:36:24 -04:00
}