allow discarding the return values of instructions

M  faden.lua
M  standardbefehlssatz.lua
M  util/standartbefehlssatz_doc.lua
This commit is contained in:
Hybrid Dog
2017-01-03 14:44:06 +01:00
parent fd15773adb
commit e70f51aa32
3 changed files with 7 additions and 11 deletions

View File

@ -62,7 +62,7 @@ o = o .. "\n\nInstructions:\n\n"
for i = 1,#instr do
i = instr[i]
o = o .. i[1] .. " " .. i[2] .. "\n"
.. " " .. i[3] .. "\n\n"
.. " " .. i[3] .. "\n\n" -- TODO: max 80 letters each line
end
print(o)