GlyEngine 0.0.17
Create games and apps with lua
Loading...
Searching...
No Matches
Hello world

@helloworld

Author
RodrigoDornelles
Version
1.0.0
Brief

say hello to the world!

Play Online!
Screenshot
  • not avaliable
Source Code
local function init(std, game)
end
local function loop(std, game)
end
local function draw(std, game)
std.draw.clear(std.color.black)
std.draw.color(std.color.white)
std.text.put(1, 1, 'Hello world!')
end
local function exit(std, game)
end
local P = {
meta={
title='Hello world',
author='RodrigoDornelles',
description='say hello to the world!',
version='1.0.0'
},
callbacks={
init=init,
loop=loop,
draw=draw,
}
}
return P;
local function exit()
local function title(window_name)