Here are errors you'll hit in your first week:
"undefined" means you misspelled a name or forgot to import a package.
"imported and not used" means you imported something you're not using. Remove the import or use it.
"declared and not used" means you created a variable but never used it. Go doesn't allow unused variables. Use them or remove them.