-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
24 lines (22 loc) · 719 Bytes
/
Main.java
File metadata and controls
24 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
* Copyright (c) 2017 ejpark.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU General Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl-3.0.html
*
* Contributors:
* [email protected] - initial API and implementation
******************************************************************************/
package algorithm.basic.a2557;
/**
* Hello World!
*
* @author ej.park
*
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}