Go uses camelCase for names. Variables and functions start with lowercase: userName, calculateTotal. If a name should be visible outside its package, start with uppercase: PrintReport.
Keep names short but clear. Go favors brevity. A loop index is i, not index. A counter is n or count, not numberOfItems. Short names are fine when the scope is small and the meaning is obvious.