v/vlib/builtin/js/builtin.v

17 lines
358 B
V
Raw Normal View History

2020-02-03 04:00:36 +00:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-09-14 20:48:30 +00: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 13:17:16 +00:00
fn JS.console.log(arg ...string)
fn JS.process.stdout.write(arg string)
2019-09-14 20:48:30 +00:00
2020-05-21 20:36:06 +00:00
pub fn println(s any) {
2020-05-21 13:17:16 +00:00
JS.console.log(s)
2019-09-14 20:48:30 +00:00
}
2020-05-21 20:36:06 +00:00
pub fn print(s any) {
2020-05-21 13:17:16 +00:00
JS.process.stdout.write(s)
2020-06-04 18:26:18 +00:00
}