Title / Description
Code object ThreadsCreation extends App { class MyThread extends Thread { override def run(): Unit = { println("New thread running.") } } val t = new MyThread t.start() t.join() println("New thread joined.") }
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code