mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-23 03:18:43 +08:00
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
# nasal lib bits.nas
|
|
# 2020/2/6
|
|
# this file is used to avoid name confliction
|
|
# and is used to avoid name undefined
|
|
# before running this file will be translated to abstract syntax tree
|
|
# and this ast will be linked before main ast as main-ast's beginning
|
|
|
|
var bits=
|
|
{
|
|
fld:func(){},
|
|
sfld:func(){},
|
|
setfld:func(){},
|
|
buf:func(){},
|
|
}; |