nomsu/lib/core/io.nom

30 lines
801 B
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.14
2018-06-14 22:17:26 -07:00
#
This file contains basic input/output code
use "core/metaprogramming"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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-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), ")");
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
externally (ask $prompt) means:
$io.write $prompt
return ($io.read())