mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
15 lines
429 B
Markdown
15 lines
429 B
Markdown
# Standard Library
|
|
|
|
The standard library offers a number of miscellaneous utility functions, which can be used for various purposes. These functions are implemented by the host program, so they may not all be provided by default.
|
|
|
|
The standard library can usually be accessed with the `import` keyword:
|
|
|
|
```
|
|
import standard;
|
|
```
|
|
|
|
## clock()
|
|
|
|
This function returns a string representation of the current timestamp.
|
|
|