com.github.hackerwin7.jlib.utils.executors.JSample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlib-utils Show documentation
Show all versions of jlib-utils Show documentation
utils set for java projects
package com.github.hackerwin7.jlib.utils.executors;
import java.util.Date;
/**
* Created by IntelliJ IDEA.
* User: hackerwin7
* Date: 2016/04/22
* Time: 3:00 PM
* Desc:
* Tips:
*/
public class JSample {
public static void main(String[] args) throws Exception {
while (true) {
Thread.sleep(2000);
System.out.println(new Date());
}
}
}