2019-01-01 17:15:51 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.14
|
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
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
(say $message) compiles to:
|
2018-12-30 19:04:34 -08:00
|
|
|
lua> ("
|
2018-12-14 20:21:03 -08:00
|
|
|
if \$message.type == "Text" then
|
|
|
|
return LuaCode("say(", \($message as lua expr), ");");
|
2018-06-14 22:17:26 -07:00
|
|
|
else
|
2018-12-14 20:21:03 -08:00
|
|
|
return LuaCode("say(tostring(", \($message as lua expr), "));");
|
2018-12-30 19:04:34 -08:00
|
|
|
end
|
|
|
|
")
|
2018-11-11 19:01:15 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
(say $message inline) compiles to:
|
2018-12-30 19:04:34 -08:00
|
|
|
lua> ("
|
2018-12-14 20:21:03 -08:00
|
|
|
if \$message.type == "Text" then
|
|
|
|
return LuaCode("io.write(", \($message as lua expr), ")");
|
2018-11-11 19:01:15 -08:00
|
|
|
else
|
2018-12-14 20:21:03 -08:00
|
|
|
return LuaCode("io.write(tostring(", \($message as lua expr), "))");
|
2018-12-30 19:04:34 -08:00
|
|
|
end
|
|
|
|
")
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
(ask $prompt) compiles to:
|
2018-12-30 19:04:34 -08:00
|
|
|
lua> ("
|
2018-12-14 20:21:03 -08:00
|
|
|
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
|
2018-12-14 20:21:03 -08:00
|
|
|
return LuaCode("(io.write(tostring(", \($prompt as lua expr), ")) and io.read())");
|
2018-12-30 19:04:34 -08:00
|
|
|
end
|
|
|
|
")
|