1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-16 23:47:47 +02:00

go: remove extraneous parentheses

This commit is contained in:
Rico Sta. Cruz 2017-09-19 13:06:40 +08:00
parent d63fedde3b
commit eee7cdade0
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A

2
go.md
View File

@ -17,7 +17,7 @@ updated: 2017-09-15
// hello.go
package main
import ( "fmt" )
import "fmt"
func main() {
message := greetMe("world")