richardhundt / shine

A Shiny Lua Dialect
Other
231 stars 18 forks source link

Error: async/util.nga:1: import "Fiber" from "async" is nil #40

Closed shortweekend closed 10 years ago

shortweekend commented 10 years ago
sample$ nyanga httpd.nga 
Error: async/util.nga:1: import "Fiber" from "async" is nil

Corrected with:

-- util.nga
import Fiber from "async.fiber"
import yield from "async"

Now you get:

sample$ nyanga httpd.nga 
Error: async/io.nga:8: import "Fiber" from "async" is nil

Corrected with:

-- io.nga
import Fiber from "async.fiber"
import yield, async from "async"

Gets it working:

sample$ nyanga httpd.nga 
server listening on http://127.0.0.1:8000/

Thanks