Who Function - Reapism/Skork GitHub Wiki
What is the who function?
The who function is one of many built in functions from the Skork library. The who function prints various information about an object or variable.
Example using the Sprite:
Sprite s; who(s); // prints information on s
Debug screen would print:
s is a green sprite located at 0,0.
Internally: The who function simply calls the ToString(); method on the object.