RosettaCodeData/Task/Loops-Infinite/FutureBasic/loops-infinite.basic

10 lines
99 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
include "NSLog.incl"
dispatchglobal
while 1
NSLog(@"SPAM")
wend
dispatchend
HandleEvents