24 lines
571 B
Go
24 lines
571 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 line of code below; 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 the statements or not.
|
|
//
|
|
// It adds them automatically after all.
|
|
|
|
/*
|
|
fmt.Println("inanc"); fmt.Println("lina"); fmt.Println("ebru");
|
|
*/
|
|
}
|