2015-11-09 07:37:06 -08:00
|
|
|
^title Module "core"
|
2015-01-18 15:36:36 -08:00
|
|
|
|
2015-01-25 11:08:13 -08:00
|
|
|
Because Wren is designed for [embedding in applications][embedding], its core
|
2015-11-08 13:31:22 -08:00
|
|
|
module is minimal and is focused on working with objects within Wren. For
|
2015-01-25 11:08:13 -08:00
|
|
|
stuff like file IO, graphics, etc., it is up to the host application to provide
|
|
|
|
|
interfaces for this.
|
|
|
|
|
|
|
|
|
|
All Wren source files automatically have access to the following classes:
|
|
|
|
|
|
|
|
|
|
* [Bool](bool.html)
|
|
|
|
|
* [Class](class.html)
|
|
|
|
|
* [Fiber](fiber.html)
|
|
|
|
|
* [Fn](fn.html)
|
|
|
|
|
* [List](list.html)
|
|
|
|
|
* [Map](map.html)
|
|
|
|
|
* [Null](null.html)
|
|
|
|
|
* [Num](num.html)
|
|
|
|
|
* [Object](object.html)
|
|
|
|
|
* [Range](range.html)
|
|
|
|
|
* [Sequence](sequence.html)
|
|
|
|
|
* [String](string.html)
|
2015-09-15 07:46:09 -07:00
|
|
|
* [System](system.html)
|
2015-01-25 11:08:13 -08:00
|
|
|
|
2015-11-08 13:31:22 -08:00
|
|
|
[embedding]: ../../embedding-api.html
|