2018-11-11 15:50:46 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.10.12.7
|
2018-06-14 22:17:26 -07:00
|
|
|
#
|
|
|
|
This file contains basic input/output code
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-06-14 22:17:26 -07:00
|
|
|
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-11-09 16:40:36 -08:00
|
|
|
return LuaCode("print(", \(%message as lua expr), ");");
|
2018-06-14 22:17:26 -07:00
|
|
|
else
|
2018-11-09 16:40:36 -08:00
|
|
|
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
|
|
|
|
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-11-09 16:40:36 -08:00
|
|
|
return LuaCode("(io.write(", \(%prompt as lua expr), ") and io.read())");
|
2018-06-14 22:17:26 -07:00
|
|
|
else
|
2018-11-11 15:50:46 -08:00
|
|
|
return LuaCode("(io.write(tostring(", \(%prompt as lua expr), ")) and io.read())");
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|