nomsu/core/io.nom
Bruce Hill 4efe44ed27 Fully upgraded to 4.10.12.7, including deprecating the old list/dict
comprehension methods, in favor of the new native support.
2018-11-11 15:50:46 -08:00

24 lines
748 B
Plaintext

#!/usr/bin/env nomsu -V4.10.12.7
#
This file contains basic input/output code
use "core/metaprogramming.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(say %message) compiles to:
lua> "\
..if \%message.type == "Text" then
return LuaCode("print(", \(%message as lua expr), ");");
else
return LuaCode("print(tostring(", \(%message as lua expr), "));");
end"
(ask %prompt) compiles to:
lua> "\
..if \%prompt.type == "Text" then
return LuaCode("(io.write(", \(%prompt as lua expr), ") and io.read())");
else
return LuaCode("(io.write(tostring(", \(%prompt as lua expr), ")) and io.read())");
end"