8 lines
319 B
Lua
8 lines
319 B
Lua
return function(argv, con)
|
|
con.print('Er2/L '.. VER)
|
|
con.print(' On the Love2D '.. table.concat({love.getVersion()}, '.', 1, 3))
|
|
con.println(' 20 FEB 22')
|
|
local txt = ('Terminal size is %dx%d characters'):format(con.w, con.h)
|
|
local sp = (' '):rep((con.w - #txt) / 2)
|
|
con.println(sp.. txt ..'\n\n\n')
|
|
end
|