Files
learngo/04-statements-expressions-comments/exercises/01-shy-semicolons/solution/main.go
2018-10-22 21:05:42 +03:00

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");
*/
}