mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
8 lines
364 B
V
8 lines
364 B
V
module ast
|
|
|
|
// This file contains definitions that are specific to the native backend,
|
|
// but also have to be known by previous stages too, like the parser/checker etc.
|
|
// Please keep it as small/simple as possible, in order to not burden the *other* backends.
|
|
|
|
pub const native_builtins = ['assert', 'print', 'eprint', 'println', 'eprintln', 'exit', 'C.syscall']
|