Update for newer version of janet.

Calvin Rose 2018-12-09 13:45:39 -05:00
parent f310d478be
commit a8f03eb7e7
2 changed files with 4 additions and 4 deletions

@ -2,5 +2,5 @@ Janet is a dynamic, lightweight programming language with strong functional
capabilities as well as support for imperative programming. It to be used
for short lived scripts as well as for building real programs. It can also
be extended with native code (C modules) for better performance and interfacing with
existing software. Janet takes ideas from Lua, Scheme, Racket, Clojure, Smalltalk, Erlang, and
existing software. Janet takes ideas from Lua, Scheme, Racket, Clojure, Smalltalk, Erlang, Arc, and
a whole bunch of other dynamic languages.

@ -558,13 +558,13 @@ fiber is in to differentiate errors from return values from user defined signals
To create a fiber, user the `fiber/new` function. The fiber constructor take one or two arguments.
the first, necessary argument is the function that the fiber will execute. This function must accept
an arity of one. The next optional argument is a collection of flags checking what kinds of
an arity of zero. The next optional argument is a collection of flags checking what kinds of
signals to trap and return via `resume`. This is useful so
the programmer does not need to handle all different kinds of signals from a fiber. Any untrapped signals
are simply propagated to the next fiber.
```lisp
(def f (fiber/new (fn @[]
(def f (fiber/new (fn []
(yield 1)
(yield 2)
(yield 3)
@ -595,7 +595,7 @@ Besides being used as coroutines, fibers can be used to implement error handling
(print "never gets here"))
# Use the :e flag to only trap errors.
(def f (fiber.new my-function-that-errors :e))
(def f (fiber/new my-function-that-errors :e))
(def result (resume f))
(if (= (fiber/status f) :error)
(print "result contains the error")