Files
learngo/04-statements-expressions-comments/exercises/01-shy-semicolons/solution/main.go
2019-10-30 19:41:13 +03:00

26 lines
738 B
Go

// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
package main
func main() {
// Uncomment the line of code below; then save the file.
//
// You will see that Gofmt tool will format your code automatically.
// https://golang.org/cmd/gofmt/
//
// 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");
*/
}