This commit is contained in:
Valk Richard Li
2020-02-06 19:06:27 +08:00
committed by GitHub
parent 6175e274c6
commit 11e36ba29f
10 changed files with 127 additions and 80 deletions
+12
View File
@@ -0,0 +1,12 @@
# 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;
}