Files
Nasal-Interpreter/version3.0/lib/readline.nas
2020-05-31 10:19:26 -07:00

12 lines
341 B
Plaintext

# nasal lib readline.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
# GNU Readline Library
var readline=func(prompt="> ")
{
return;
}