Skip to content
Tyler887 edited this page Dec 20, 2021 · 13 revisions

The Hello World cartridge is the default cart.

Code

Lua

unction TIC()

	if btn(0) then y=y-1 end
	if btn(1) then y=y+1 end
	if btn(2) then x=x-1 end
	if btn(3) then x=x+1 end

	cls(13)
	spr(1+t%60//30*2,x,y,14,3,0,0,2,2)
	print("HELLO WORLD!",84,84)
	t=t+1
end
Clone this wiki locally