Sliced by Go’s Slices
Summary
Explores how Go's variadic expansion binds to the underlying slice, showing that mutating nums via the variadic parameter also mutates the original slice. The piece contrasts this with Python's tuple-based *args and **kwargs, includes code samples and a Go Playground link, and humorously critiques Go's quirks as a caution for developers building automation tooling in Go.