Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #800

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions tutorials/learn-golang.org/en/Hello, World!.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Tutorial

Welcome to the first tutorial. This tutorial will guide you through your first go program.

Golang is a modern statistically typed and compiled language from Google.
Golang is a modern statically typed and compiled language from Google.

In each golang program you need to define a package name at the top. So if you need to import your code into some other program you can use this package name to import. Execution of a golang project starts in the package `"main"`. So let's define our package as main.

Expand Down Expand Up @@ -77,4 +77,4 @@ import (
func main() {
fmt.Println("Hello, world!")

}
}