Guest User

Untitled

a guest
Jun 18th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package alphatunnel;
  2.  
  3. import java.util.Date;
  4.  
  5. public class Main {
  6. public static final void log(String msg) {
  7. System.out.println(new Date() + "\t" + msg);
  8. }
  9.  
  10. public static void main(String args[]) {
  11. log("Starting client thread...");
  12. Thread cConn = new client(); cConn.start();
  13. }
  14. }
Add Comment
Please, Sign In to add comment