-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path03_do_file.go
40 lines (34 loc) · 956 Bytes
/
03_do_file.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Dvacátá sedmá část
// Skriptovací jazyk Lua v aplikacích naprogramovaných v Go
// https://www.root.cz/clanky/skriptovaci-jazyk-lua-v-aplikacich-naprogramovanych-v-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z dvacáté sedmé části:
// https://github.com/tisnik/go-root/blob/master/article_27/README.md
//
// Demonstrační příklad číslo 3:
// Načtení externího skriptu do Lua VM.
package main
import (
"github.com/yuin/gopher-lua"
"log"
)
// LuaSource contains name of file containing Lua script
const LuaSource = "hello.lua"
func main() {
luaVM := lua.NewState()
log.Println("Lua VM has been initialized")
defer func() {
luaVM.Close()
log.Println("Lua VM has been closed")
}()
err := luaVM.DoFile(LuaSource)
if err != nil {
log.Fatal(err)
}
}