2015-01-18 23:36:36 +00:00
|
|
|
^title Core Library
|
|
|
|
|
^category core
|
|
|
|
|
|
2015-01-25 19:08:13 +00:00
|
|
|
Because Wren is designed for [embedding in applications][embedding], its core
|
|
|
|
|
library is minimal and is focused on working with objects within Wren. For
|
|
|
|
|
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-06-27 11:50:29 +00:00
|
|
|
* [IO](io.html)
|
2015-01-25 19:08:13 +00:00
|
|
|
|
2015-05-30 15:11:26 +00:00
|
|
|
[embedding]: ../embedding-api.html
|