I'm wondering how to println a sentence ONCE in Processing. when I type println("Hello World!"); it just shows lots of Hello World! sentences. I know how to fix it with keyPressed (when the key is pressed, type this, and stuff) but I don't know how to do it in a simple way...

link|improve this question

1  
is it in loop?. – Prince John Wesley Jun 25 '11 at 1:55
doesnt really matter... i just found out that you just can do println(blah blah blah); ... – Hikari Iwasaki Jun 25 '11 at 3:42
feedback

2 Answers

up vote 3 down vote accepted

Set a flag so that it only gets printed once. For example, at global scope you should have:

 bool did_print = false;

And where you do the println:

 if(!did_print)  {
      println("Hello World!");
      did_print = true;
 }
link|improve this answer
feedback

If it is in a loop (which it sounds like). I would go with either what Mikola said or:

while(someVar == whatever) {
    // some code
    println("Hello World!");
    break;
}

The key being the breaK; statement to fall out of the loop.

If it's not in a loop, or this doesn't help, please expand on the issue..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.