Compare commits

...

1 Commits

Author SHA1 Message Date
Ilkka Seppälä
68e1ca83e8 commit 2020-06-14 22:21:45 +03:00

View File

@ -45,9 +45,11 @@ public class App {
* Entry point. * Entry point.
*/ */
public static void main(String[] args) { public static void main(String[] args) {
var host1 = new Client(); var host1 = new Client();
var host2 = new Client(); var host2 = new Client();
host1.useService(12); host1.useService(12);
host2.useService(73); host2.useService(73);
} }
} }