Skip to content

Commit 50f065e

Browse files
committed
Bump up to 1.10 and add gmoonscript to the README
1 parent 7d7bc87 commit 50f065e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: go
22

33
go:
4-
- 1.7
54
- 1.8
65
- 1.9
6+
- 1.10
77

88
before_install:
99
- go get github.com/axw/gocov/gocov

README.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,11 +505,11 @@ With coroutines
505505
co, cocancel := L.NewThread()
506506
defer cocancel()
507507
fn := L.GetGlobal("coro").(*LFunction)
508-
508+
509509
_, err, values := L.Resume(co, fn) // err is nil
510-
510+
511511
cancel() // cancel the parent context
512-
512+
513513
_, err, values = L.Resume(co, fn) // err is NOT nil : child context was canceled
514514
515515
**Note that using a context causes performance degradation.**
@@ -784,6 +784,7 @@ Libraries for GopherLua
784784
- `gluaxmlpath <https://github.com/ailncode/gluaxmlpath>`_ : An xmlpath module for gopher-lua
785785
- `gluasocket <https://github.com/BixData/gluasocket>`_ : A LuaSocket library for the GopherLua VM
786786
- `gluabit32 <https://github.com/BixData/gluabit32>`_ : A native Go implementation of bit32 for the GopherLua VM.
787+
- `gmoonscript <https://github.com/rucuriousyet/gmoonscript>`_ : Moonscript Compiler for the Gopher Lua VM
787788

788789
----------------------------------------------------------------
789790
Donation

0 commit comments

Comments
 (0)