Cleaning up say/print and io.write (now you can use (say "foo" inline))
This commit is contained in:
parent
efac694cc0
commit
a84242b849
12
core/io.nom
12
core/io.nom
@ -9,9 +9,17 @@ use "core/metaprogramming.nom"
|
|||||||
(say %message) compiles to:
|
(say %message) compiles to:
|
||||||
lua> "\
|
lua> "\
|
||||||
..if \%message.type == "Text" then
|
..if \%message.type == "Text" then
|
||||||
return LuaCode("print(", \(%message as lua expr), ");");
|
return LuaCode("say(", \(%message as lua expr), ");");
|
||||||
else
|
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"
|
end"
|
||||||
|
|
||||||
(ask %prompt) compiles to:
|
(ask %prompt) compiles to:
|
||||||
|
@ -72,7 +72,7 @@ local nomsu_environment = Importer({
|
|||||||
string = string,
|
string = string,
|
||||||
xpcall = xpcall,
|
xpcall = xpcall,
|
||||||
module = module,
|
module = module,
|
||||||
print = print,
|
say = print,
|
||||||
loadfile = loadfile,
|
loadfile = loadfile,
|
||||||
rawset = rawset,
|
rawset = rawset,
|
||||||
_VERSION = _VERSION,
|
_VERSION = _VERSION,
|
||||||
|
@ -38,7 +38,7 @@ nomsu_environment = Importer{
|
|||||||
-- Lua stuff:
|
-- Lua stuff:
|
||||||
:next, unpack: unpack or table.unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall,
|
:next, unpack: unpack or table.unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall,
|
||||||
:error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module,
|
: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,
|
:table, :assert, :dofile, :loadstring, lua_type_of:type, :select, :math, :io, :load,
|
||||||
:pairs, :ipairs, :jit, :_VERSION
|
:pairs, :ipairs, :jit, :_VERSION
|
||||||
bit: (jit or _VERSION == "Lua 5.2") and require('bitops') or nil
|
bit: (jit or _VERSION == "Lua 5.2") and require('bitops') or nil
|
||||||
|
@ -21,18 +21,19 @@ say "\
|
|||||||
"
|
"
|
||||||
|
|
||||||
repeat:
|
repeat:
|
||||||
%io.write (bright (yellow ">> "))
|
say (bright (yellow ">> ")) inline
|
||||||
%buff = []
|
%buff = []
|
||||||
repeat:
|
repeat:
|
||||||
%io.write (bright)
|
say (bright) inline
|
||||||
%line = (%io.read "*L")
|
%line = (%io.read "*L")
|
||||||
%io.write (reset color)
|
say (reset color) inline
|
||||||
if ((%line == "\n") or (not %line)):
|
if ((%line == "\n") or (not %line)):
|
||||||
if ((size of %buff) > 0):
|
if ((size of %buff) > 0):
|
||||||
%io.write "\027[1A\027[2K"
|
# clear the line
|
||||||
|
say "\027[1A\027[2K" inline
|
||||||
go to (run buffer)
|
go to (run buffer)
|
||||||
%buff::add (%line::with "\t" -> " ")
|
%buff::add (%line::with "\t" -> " ")
|
||||||
%io.write (dim (yellow ".. "))
|
say (dim (yellow ".. ")) inline
|
||||||
=== (run buffer) ===
|
=== (run buffer) ===
|
||||||
if ((size of %buff) == 0): stop
|
if ((size of %buff) == 0): stop
|
||||||
%buff = (%buff::joined)
|
%buff = (%buff::joined)
|
||||||
|
Loading…
Reference in New Issue
Block a user