Skip to content

Instantly share code, notes, and snippets.

@juliaogris
Created February 11, 2023 03:29
Show Gist options
  • Save juliaogris/ff91697865533c24d0ad52df24c4023e to your computer and use it in GitHub Desktop.
Save juliaogris/ff91697865533c24d0ad52df24c4023e to your computer and use it in GitHub Desktop.
d := false
width 1
on down x:num y:num
d = true
move x y
end
on up
d = false
end
on move x:num y:num
if d
line x y
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment