Skip to content

Instantly share code, notes, and snippets.

@claytical
Created March 15, 2022 17:16
Show Gist options
  • Save claytical/69ce399b7be2fee1591759560bb480b7 to your computer and use it in GitHub Desktop.
Save claytical/69ce399b7be2fee1591759560bb480b7 to your computer and use it in GitHub Desktop.
Processing, Loop and Log
//LOOP & LOG
void setup() {
println("I run once");
}
void draw() {
println("Mouse X: " + mouseX + " Mouse Y: " + mouseY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment