RosettaCodeData/Task/Call-a-function-in-a-shared-library/FutureBasic/call-a-function-in-a-shared-library.basic

12 lines
230 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
include "tlbx GameplayKit.incl"
UInt64 randomInteger
NSUInteger i
for i = 1 to 20
randomInteger = fn GKLinearCongruentialRandomSourceSeed( fn GKLinearCongruentialRandomSourceInit )
print randomInteger
next
HandleEvents