v.js: make eprintln use console.error

pull/2440/head
Ole-Martin Bratteng 2019-10-19 14:42:37 +02:00 committed by Alexander Medvednikov
parent 5977fc0644
commit b73387647c
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ pub fn println(s string) {
}
pub fn eprintln(s string) {
#console.log(s)
#console.error(s)
}
pub fn print(s string) {