
better path going forward to handling upgrades. Old syntax files will stick around for compatibility purposes. Old syntax can be parsed into valid syntax trees via the old syntax (.peg) files, and then old syntax trees should be valid and can be upgraded via the normal code path. This change has lots of improvements to Nomsu codegen too.
22 lines
712 B
Plaintext
22 lines
712 B
Plaintext
#!/usr/bin/env nomsu -V1
|
|
#
|
|
This file contains basic input/output code
|
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
compile [say %message] to
|
|
lua> ".."
|
|
if \%message.type == "Text" then
|
|
return LuaCode(tree.source, "print(", \(%message as lua expr), ");");
|
|
else
|
|
return LuaCode(tree.source, "print(tostring(", \(%message as lua expr), "));");
|
|
end
|
|
|
|
compile [ask %prompt] to
|
|
lua> ".."
|
|
if \%prompt.type == "Text" then
|
|
return LuaCode.Value(tree.source, "(io.write(", \(%prompt as lua expr), ") and io.read())");
|
|
else
|
|
return LuaCode.Value(tree.source, "(io.write(tostring(", \(%prompt as lua expr), ")) and io.read())");
|
|
end
|