public class LocalSetup { public static void main(String[] args) { ServerImplementation server = new ServerImplementation(); server.startAsLocalServer(); Server dave = server; (new ClientImplementation("larry")).startAsClientOf(dave); (new ClientImplementation("michael")).startAsClientOf(dave); (new ClientImplementation("toni")).startAsClientOf(dave); } }