1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

js: prefix V builtin functions, so they do not overlap with JS (#11483)

This commit is contained in:
playX
2021-09-13 11:44:55 +03:00
committed by GitHub
parent 480fe8041a
commit b9dfc89aa9
3 changed files with 16 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ import v.errors
import os
import hash.fnv1a
const (
pub const (
builtin_functions = ['print', 'println', 'eprint', 'eprintln', 'isnil', 'panic', 'exit']
)