nomsu/core/io.nom

26 lines
767 B
Plaintext
Raw Normal View History

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