tl:dr star is a python(ish) programming environment that lets you call Go library functions. click down to the repl if you’d just like to play around Starlark is Google’s custom subset of Python that it uses as a configuration language with Bazel. I started looking into it a little because it has some interesting characteristics. It’s not turing complete (no unbounded loops), it doesn’t have classes or higher level abstractions, it’s also deterministic and is somewhat safe to run un...