Skip to content

Instantly share code, notes, and snippets.

@federico-pepe
Created September 23, 2015 07:44
Show Gist options
  • Select an option

  • Save federico-pepe/1a122d51e77122977ca1 to your computer and use it in GitHub Desktop.

Select an option

Save federico-pepe/1a122d51e77122977ca1 to your computer and use it in GitHub Desktop.
Understanding println()
void setup() {
size(700, 500);
}
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