Files
blitz-kt/src/main/kotlin/blitz/IO.kt
2024-03-28 22:44:15 +01:00

13 lines
259 B
Kotlin

package blitz
@Deprecated(
level = DeprecationLevel.ERROR,
message = "Will be removed in the future!",
replaceWith = ReplaceWith(
"Terminal.warn",
"blitz.term.Terminal"
)
)
fun warn(msg: String) {
System.err.println(msg)
}