Close

TestPage1

not equal so I can write here?

location = 'world'

# our first argument is a string, then next is a variable
run('print(args[0] + ", " + args[1])', 'hello', location, delayFrames=60)

# running another function using args
def otherFunc(thing):
	print('yo,', thing)

run('args[0]("moon")', otherFunc, delayMilliSeconds=2000)
run('print("hello, world")', delayFrames=60)