User Program Communication
Package Clause in Go
Used to define which package the source file belongs to.
Syntax
package packageName
Notes
Every source file starts with a package clause.
Example
package main
//the rest of the source code
Used to define which package the source file belongs to.
package packageName
Every source file starts with a package clause.
package main
//the rest of the source code