I was learning about Go and was wondering if there is a name for the := operator. As in x := 4.
The best I can come up with is the "spider face".
Example

(source: buzzfed.com)
Update
The reason I ask is because I'm wondering how you would read the code out loud as in during a pair programming session. It's been brought up that the official name of the operator is the "short variable declaration operator" but this is ironically too long of a name to be used frequently.
How would you read this x := 4? So far I have "ex colon equals four" or "ex spider-face four"? Are there any better ideas?
The Go Programming Language Specification calls the declarations involving
:=“short variable declarations.” Hence the operator would be called the “short variable declaration operator.”