19 lines
319 B
Lua
19 lines
319 B
Lua
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
|
|
|