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

@helloworld

https://helloworld.gamely.com.br

Author
RodrigoDornelles
Version
1.0.0
Brief

say hello to the world!

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)