This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
number-listener/Main.java
2021-01-25 13:57:29 -08:00

29 lines
454 B
Java

/*
Main class for server execution.
Arguments: None
*/
public class Main {
private static Server server;
public static void main(String[] args) {
server = new Server(4000);
System.out.println("Starting up server ....");
server.start();
while (server.getActive() == true) {
//Loop while server is running
}
System.out.println("Server terminating. Goodbye");
}
}