Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

test #133

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

test #133

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tmpdir/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package main

import "fmt"

func main() {
const print_str = "Hello, GopherCon"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, rename to printStr: we use camel-case in Go.

fmt.Println(print_str)
}