Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardGoempty interface eface layoutSingle-choice MCQ

On a 64-bit platform, what does the `data` word of an `interface{}` (eface) hold when you assign a plain `int` value to it, and why does the assignment typically allocate?

var x interface{} var n int = 42 x = n