forked from vala/bottom-tier-java
25 lines
505 B
Java
25 lines
505 B
Java
/*
|
|
* 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
|
|
*/
|
|
|
|
/**
|
|
* 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!");
|
|
}
|
|
}
|