8 lines
220 B
Java

public class main {
public static void main(String[] args) {
Thread mythread = new Thread(() -> new Webserver().startserver());
mythread.start();
System.out.println("thread started");
}
}