I want to write a coin flip simulator.
I want to do a loop and print the flips.
Should I use a textbox, or is there a better way?
Also, do I append the flip to the existing output?
Ideal way?
loop
Is there a better way?/
I want to do a loop and print the flips.
Should I use a textbox, or is there a better way?
Also, do I append the flip to the existing output?
Ideal way?
loop
Code:
generate flip
str = str & flip
textbox.text = str
Is there a better way?/