-
Notifications
You must be signed in to change notification settings - Fork 1
Native Functions
Frederik Tobner edited this page Aug 9, 2022
·
14 revisions
Reads the next line of characters from the standard input stream
var input = readLine();
Returns a random number
var number = random();
Returns the userName of the user that is executing the cellox program
var input = getUserName();
Returns the amount of seconds that have passed since the program execution has started
var expiredTime = clock();
Suspends the current thread for the specified number of seconds
wait(5);