Skip to content

Instantly share code, notes, and snippets.

@Achie72
Created May 30, 2025 18:14
Show Gist options
  • Save Achie72/18857362d94ea711cddcebcc4b657a2a to your computer and use it in GitHub Desktop.
Save Achie72/18857362d94ea711cddcebcc4b657a2a to your computer and use it in GitHub Desktop.
Grid play area in Daily Verse
-- borders around play area
line(8,7,87,7,1)
line(7,8,7,88,1)
line(88,8,88,88,1)
line(8,89,87,89,1)
-- fill pattern for grid
for i=1,10 do
fillp(▒)
--line((i*8)-1,8,(i*8),88,1)
local xpos = (i*8)-1
-- vertical lines
line(xpos, 8, xpos, 88, 1)
-- horizontal lines
line(8, xpos, 88, xpos, 1)
fillp()
end
@Achie72
Copy link
Author

Achie72 commented May 30, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment