RosettaCodeData/Task/Call-a-function-in-a-shared-library/FutureBasic/call-a-function-in-a-shared-library.basic
2023-07-01 13:44:08 -04:00

11 lines
230 B
Text

include "tlbx GameplayKit.incl"
UInt64 randomInteger
NSUInteger i
for i = 1 to 20
randomInteger = fn GKLinearCongruentialRandomSourceSeed( fn GKLinearCongruentialRandomSourceInit )
print randomInteger
next
HandleEvents