Some basic examples of embeding and using starlark-go.
Demonstrates a minimal example, also it demonstrates how to provide your own print function.
Demonstrates how to add your go builtins (both constants and functions) that can then be called from starlark scripts.
Demonstrates how to call functions defined in a starlark script from go.
Demonstrates how to provide custom types to starlark, it also demonstrates how to add support for binary (+,-,*,/) and unary (+/-) operations to your custom types.
Demonstrates how to provide a builtin function with a complex signature (i.e. *args, **kwargs ... ).
Demonstrates how to support scripts spanning multiple modules, and shows an example of modules loaded from both the file system and from strings embedded in the host application. It also shows how to detect circular dependencies within your scripts.