Adds Lua string

pull/187/head
Thadeu de Paula 10 months ago
parent aca8ca5f54
commit 71c7459bfb

@ -8,4 +8,10 @@
-- to execute:
-- lua hello.lua
io.write("Hello world, from ",_VERSION,"!\n")
-- The simplest way:
print('Hello world', 'from', _VERSION)
-- On the stdout or stderr
io.stdout:write("Hello world, from ",_VERSION,"!\n")
io.stderr:write("Hello world, from ",_VERSION,"!\n")

Loading…
Cancel
Save