v/vlib/builtin/js/builtin.v

16 lines
363 B
V
Raw Normal View History

2020-02-03 05:00:36 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-09-14 22:48:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module builtin
2020-05-21 15:17:16 +02:00
fn JS.console.log(arg ...string)
fn JS.process.stdout.write(arg string)
2019-09-14 22:48:30 +02:00
pub fn println(s string) {
2020-05-21 15:17:16 +02:00
JS.console.log(s)
2019-09-14 22:48:30 +02:00
}
pub fn print(s string) {
2020-05-21 15:17:16 +02:00
JS.process.stdout.write(s)
}