aboutsummaryrefslogtreecommitdiff
path: root/examples/restart/src/Main.scala
blob: 1c03832553fcb0426b81491f297c13f3e54b9436 (plain) (blame)
1
2
3
4
5
6
object Main extends App {
  while(true){
    Thread.sleep(1000)
    println( "process " + cbt.process.currentProcessId + " is still running" )
  }
}