Skip to content

Instantly share code, notes, and snippets.

@ayaniimi213
Created June 18, 2014 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayaniimi213/7f6334ef337a167cf02a to your computer and use it in GitHub Desktop.
Save ayaniimi213/7f6334ef337a167cf02a to your computer and use it in GitHub Desktop.
sample program for Processing Debugger
//debug_demo.pde
void setup() {
println("start");
int suji = 0;
String moji = "";
for (int i=0; i<10; i++) {
suji += i;
moji += i; //str(i);
println("suji: "+suji);
println("moji: "+moji);
}
println("end");
}
void draw() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment