TIL: Go has a standard library package, container/ring, that lets you create a circular list.
Very useful for Advent of Code when I have to move left or right in a compass direction, which of course wraps around. Saves me having to write a bunch of if/switch statements to handle every possible combination.
Took me a while to find this, after searching for 'clock' and 'wrap around slice'.


