aff0fb3c6e
FossilOrigin-Name: 3b06a15e14d8f808dbefdde1d129a4f768f803fbb3ce7fe39a82e60ff7ed88e7
6 lines
106 B
Python
6 lines
106 B
Python
import random
|
|
|
|
|
|
class RNG:
|
|
def __call__(self):
|
|
return random.randint(-2147483647, 2147483646)
|