Files
hakorune/apps/lib/boxes/console_std.nyash

22 lines
365 B
Plaintext

// ConsoleStd — minimal standard console helpers (commonized API)
static box ConsoleStd {
// print/println/log: convert null to "" and return 0
print(x) {
if x == null { x = "" }
print(x)
return 0
}
println(x) {
if x == null { x = "" }
print(x)
return 0
}
log(x) {
if x == null { x = "" }
print(x)
return 0
}
}