Skip to content

Instantly share code, notes, and snippets.

@tikidunpon
Created August 30, 2017 11:53
Show Gist options
  • Save tikidunpon/748452e2bbd705853d771aad31630264 to your computer and use it in GitHub Desktop.
Save tikidunpon/748452e2bbd705853d771aad31630264 to your computer and use it in GitHub Desktop.
雑だけどlocal functionでprintln定義してlinenumberだすやつ #CodePiece #read_kotlin
fun main(args: Array<String>) {
fun <T> println(message: T) {
print(Thread.currentThread().stackTrace[2].lineNumber.toString() + "行目 ")
print(message)
print("\n")
}
println("hi")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment