8 lines
220 B
Java
Raw Normal View History

2019-09-13 15:41:40 +02:00
public class main {
public static void main(String[] args) {
2019-09-13 15:57:33 +02:00
Thread mythread = new Thread(() -> new Webserver().startserver());
2019-09-13 15:41:40 +02:00
mythread.start();
System.out.println("thread started");
}
}