Short variable declarations
Inside a function, := is the shorthand for declaring and initializing a variable — no var, no explicit type needed. You’ll use this all the time.
Outside a function, every statement must start with a keyword like var or func, so := isn’t available there.