org.gorttar.graphics.turtle.awt.Utils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of handy-libs Show documentation
Show all versions of handy-libs Show documentation
Bunch of somewhat usable libraries without any particular direction
package org.gorttar.graphics.turtle.awt
import java.time.LocalDateTime
fun log(msg: String) {
val thread = Thread.currentThread()
val now = LocalDateTime.now()
println("$now $thread $msg")
}