init project with sprite and bare l5 for mockup

This commit is contained in:
Travis Shears 2026-02-02 11:55:26 +01:00
commit 1dee952026
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
4 changed files with 3956 additions and 0 deletions

19
l5-mockup/main.lua Normal file
View file

@ -0,0 +1,19 @@
require("L5")
function setup()
size(400, 400)
-- Set the program title
windowTitle("Basic sketch")
-- Sets print command output to display in window
printToScreen()
describe('Draws a yellow background')
end
function draw()
-- Fills the background with the color yellow
background(255, 215, 0)
end