Courses/Go (Golang)/Go Basics - Lesson 1

Go Basics - Lesson 1

Master Go fundamentals

Beginner⏱️ 20 minutes

Lesson Content

Go Lesson 1

Syntax, Types, Functions

package main

import "fmt"

func main() {
  fmt.Println("Hello Go")
}
go
Loading...
Expected Output: Hello
Next (Complete this lesson first)
Go Basics - Lesson 2