Cleaning up say/print and io.write (now you can use (say "foo" inline))

This commit is contained in:
Bruce Hill 2018-11-11 19:01:15 -08:00
parent efac694cc0
commit a84242b849
4 changed files with 18 additions and 9 deletions

View File

@ -9,9 +9,17 @@ use "core/metaprogramming.nom"
(say %message) compiles to:
lua> "\
..if \%message.type == "Text" then
return LuaCode("print(", \(%message as lua expr), ");");
return LuaCode("say(", \(%message as lua expr), ");");
else
return LuaCode("print(tostring(", \(%message as lua expr), "));");
return LuaCode("say(tostring(", \(%message as lua expr), "));");
end"
(say %message inline) compiles to:
lua> "\
..if \%message.type == "Text" then
return LuaCode("io.write(", \(%message as lua expr), ")");
else
return LuaCode("io.write(tostring(", \(%message as lua expr), "))");
end"
(ask %prompt) compiles to:

View File

@ -72,7 +72,7 @@ local nomsu_environment = Importer({
string = string,
xpcall = xpcall,
module = module,
print = print,
say = print,
loadfile = loadfile,
rawset = rawset,
_VERSION = _VERSION,

View File

@ -38,7 +38,7 @@ nomsu_environment = Importer{
-- Lua stuff:
:next, unpack: unpack or table.unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall,
:error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module,
:print, :loadfile, :rawset, :_VERSION, :collectgarbage, :rawget, :rawlen,
say:print, :loadfile, :rawset, :_VERSION, :collectgarbage, :rawget, :rawlen,
:table, :assert, :dofile, :loadstring, lua_type_of:type, :select, :math, :io, :load,
:pairs, :ipairs, :jit, :_VERSION
bit: (jit or _VERSION == "Lua 5.2") and require('bitops') or nil

View File

@ -21,18 +21,19 @@ say "\
"
repeat:
%io.write (bright (yellow ">> "))
say (bright (yellow ">> ")) inline
%buff = []
repeat:
%io.write (bright)
say (bright) inline
%line = (%io.read "*L")
%io.write (reset color)
say (reset color) inline
if ((%line == "\n") or (not %line)):
if ((size of %buff) > 0):
%io.write "\027[1A\027[2K"
# clear the line
say "\027[1A\027[2K" inline
go to (run buffer)
%buff::add (%line::with "\t" -> " ")
%io.write (dim (yellow ".. "))
say (dim (yellow ".. ")) inline
=== (run buffer) ===
if ((size of %buff) == 0): stop
%buff = (%buff::joined)