Initial commit
This commit is contained in:
38
03-packages-and-scopes/exercises/02-scopes/solution/main.go
Normal file
38
03-packages-and-scopes/exercises/02-scopes/solution/main.go
Normal file
@ -0,0 +1,38 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
// as you can see, I don't need to import a package
|
||||
// and I can call `hello` function here.
|
||||
//
|
||||
// this is because, package-scoped names
|
||||
// are shared in the same package
|
||||
hello()
|
||||
|
||||
// but here, i can't access the fmt package without
|
||||
// importing it.
|
||||
//
|
||||
// this is because, it's in the printer.go's file scope.
|
||||
// it imports it.
|
||||
|
||||
// this main func can also call bye function here
|
||||
// bye()
|
||||
}
|
||||
|
||||
// printer.go can call this function
|
||||
//
|
||||
// this is because, bye function is in the package-scope
|
||||
// of the main package now.
|
||||
//
|
||||
// main func can also call this.
|
||||
func bye() {
|
||||
fmt.Println("bye bye")
|
||||
}
|
Reference in New Issue
Block a user