Lines Matching full:go
2 <!-- This file is the project homepage for go.starlark.net -->
4 # Starlark in Go
6 [![Travis CI](https://travis-ci.org/google/starlark-go.svg)](https://travis-ci.org/google/starlark-…
7 [![GoDoc](https://godoc.org/go.starlark.net/starlark?status.svg)](https://godoc.org/go.starlark.net…
10 Starlark in Go is an interpreter for Starlark, implemented in Go.
12 The new import path for Go packages is `"go.starlark.net/starlark"`.
41 * About the Go implementation: [doc/impl.md](doc/impl.md)
43 * API documentation: [godoc.org/go.starlark.net/starlark](https://godoc.org/go.starlark.net/starlar…
45 * Mailing list: [starlark-go](https://groups.google.com/forum/#!forum/starlark-go)
47 … Issue tracker: [https://github.com/google/starlark-go/issues](https://github.com/google/starlark-…
56 $ go get -u go.starlark.net/cmd/starlark
94 Embed the interpreter in your Go program:
96 ```go
97 import "go.starlark.net/starlark"
107 // Call Starlark function from Go.
113 See [starlark/example_test.go](starlark/example_test.go) for more examples.
122 All significant changes to the language or to the interpreter's Go
127 Despite some differences, the Go implementation of Starlark strives to
135 its Go implementation proceed.
170 The Go implementation was written by Alan Donovan and Jay Conrod;
175 Starlark in Go is Copyright (c) 2018 The Bazel Authors.
179 [LICENSE](https://github.com/google/starlark-go/blob/master/LICENSE).
181 Starlark in Go is not an official Google product.