19 lines
463 B
Go
19 lines
463 B
Go
// 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
|
|
|
|
// Uncomment below code to see the error
|
|
// (Just remove the // characters for all 3 lines below)
|
|
|
|
// This file cannot see main.go's imported names ("fmt").
|
|
// Because, the imported names belong to file scope.
|
|
|
|
// func bye() {
|
|
// fmt.Println("Bye!")
|
|
// }
|