Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
var thread = Thread.newThread(Thread.VIRTUAL, () -> System.out.println("hello"));   // unstarted
thread.start();
thread.join(Duration.ofSeconds(5));

...