I’m new in Go programming and I recently while following “Introducing Go by Caleb” I encountered with this error message package command-line-arguments is not a main package
The package name can be an arbitrary identifier, though if you want a package to serve as an entry point for an executable program, it needs to be named “main” and have a function main() with no arguments and no return type.