starlarkrepl
Experimental autocompletion REPL for starlark-go based on liner.
thread := &starlark.Thread{Load: repl.MakeLoad()}
globals := make(starlark.StringDict)
options := starlarkrepl.Options{
AutoComplete: true,
HistoryFile: "history.txt",
}
starlarkrepl.Run(thread, globals, options)