Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function Update()
  2. {
  3. //condition initially true every update...
  4. var simulatedIf=true;
  5.  
  6. while(simulatedIf)
  7. {
  8. print("hello!");
  9. //make it false now, so it won't repeat
  10. simulatedIf=false;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement