TIL you can see each of the #golang compiler's phases in action by using the `GOSSAFUNC` environment variable.
The following command will generate an `ssa.html` file which contains an interactive view of what each compile pass does to a particular piece of code (the function Foo).
`GOSSAFUNC=main.Foo go build`