2018-10-30 23:42:04 -07:00
|
|
|
#!/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"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
(say %message) compiles to:
|
2018-09-14 19:17:09 -07:00
|
|
|
lua> "\
|
|
|
|
..if \%message.type == "Text" then
|
2018-06-20 15:22:03 -07:00
|
|
|
return LuaCode(tree.source, "print(", \(%message as lua expr), ");");
|
2018-06-14 22:17:26 -07:00
|
|
|
else
|
2018-06-20 15:22:03 -07:00
|
|
|
return LuaCode(tree.source, "print(tostring(", \(%message as lua expr), "));");
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
(ask %prompt) compiles to:
|
2018-09-14 19:17:09 -07:00
|
|
|
lua> "\
|
|
|
|
..if \%prompt.type == "Text" then
|
2018-06-18 15:44:29 -07:00
|
|
|
return LuaCode.Value(tree.source, "(io.write(", \(%prompt as lua expr), ") and io.read())");
|
2018-06-14 22:17:26 -07:00
|
|
|
else
|
2018-07-20 20:27:15 -07:00
|
|
|
return LuaCode.Value(tree.source, "(io.write(tostring(", \(..)
|
|
|
|
%prompt as lua expr
|
|
|
|
.., ")) and io.read())");
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|