22 lines
559 B
Go
22 lines
559 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
|
|
|
|
func main() {
|
|
// uncomment the below line of code; then save the file
|
|
//
|
|
// you will see that Go will fix it automatically
|
|
//
|
|
// this is because, for Go, it doesn't matter whether
|
|
// you use semicolons between statements or not.
|
|
//
|
|
// it adds them automatically after all.
|
|
|
|
// fmt.Println("inanc"); fmt.Println("lina"); fmt.Println("ebru");
|
|
}
|