본 게시글은 Golang Tutorial for Beginners | Full Go Course을 학습하며 작성한 개인 노트입니다.
Go programs are organized into packages
A package is a collection of Go files
helper.go
file to include function used in maingo run main.go helper.go
to run codeCreate helper folder to locate helper.go
file
Hence, specify import of helper package to use functions
To make a variable available for all packages in the app, capitalize the first letter of the name