literal") shorthand, deprecating Lua value, and more use of Lua "..." with text interpolations.
26 lines
819 B
Plaintext
26 lines
819 B
Plaintext
#!/usr/bin/env nomsu -V4.8.10
|
|
#
|
|
This file contains basic input/output code
|
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
(say %message) compiles 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"
|
|
|
|
(ask %prompt) compiles to:
|
|
lua> "\
|
|
..if \%prompt.type == "Text" then
|
|
return LuaCode(tree.source, "(io.write(", \(%prompt as lua expr), ") and io.read())");
|
|
else
|
|
return LuaCode(tree.source, "(io.write(tostring(", \(..)
|
|
%prompt as lua expr
|
|
.., ")) and io.read())");
|
|
end"
|