Oliver's Blog
Search
⌃K
Oliver's Blog
Search
⌃K
Welcome!
Projects
Course Enrollment App
Fitness Tracker App
Voice Shopping Assistant
Graphics Town
Algo
Binary Search
Linked List
Recursion Basics
Binary Tree
Sorting
Two Pointers
Queue & Stack
Hash Table
Heap & Priority Queue
BFS
Array
String
Math
Dynamic Programming
LeetCode vs. LintCode Table
React Notes
Optimizing Performance in React
Golang Notes
Basics
Setup
Hello World
Structure
Data Types
Variables
Operators
Constants
Decision Making
Loops
Special Statements
Official Tutorial Notes
Miscellaneous
A GMAT Reading
Traveling to China During a Global Pandemic
Powered By GitBook

Hello World

Hello world program

$ touch hello_world.go
package main
​
import "fmt"
​
func main() {
fmt.Println("Hello, 世界")
}
$ go run hello_world.go
Previous
Setup
Next
Structure
Last modified 2yr ago
Copy link