String.fromCodePoint(). Fix #219.

This commit is contained in:
Bob Nystrom
2015-03-27 07:43:36 -07:00
parent 373770a8d5
commit 7d45dda383
23 changed files with 166 additions and 43 deletions
+4
View File
@@ -13,6 +13,8 @@ fiber is run. Does not immediately start running the fiber.
IO.print("I won't get printed")
}
## Static Methods
### Fiber.**current**
The currently executing fiber.
@@ -69,6 +71,8 @@ Similar to `Fiber.yield` but provides a value to return to the parent fiber's
IO.print(fiber.call()) // "value"
## Methods
### **call**()
**TODO**