RosettaCodeData/Task/Spinning-rod-animation-Text/FutureBasic/spinning-rod-animation-text.basic

13 lines
215 B
Text
Raw Permalink Normal View History

2024-11-04 20:28:54 -08:00
void local fn SpinTheRod
CFStringRef s = @"|/—\\"
block int i = 0
timerbegin , 0.25, YES
cls : print mid( s, i, 1 )
i++ : if ( i >= len(s) ) then i = 0
timerend
end fn
fn SpinTheRod
HandleEvents