Menu
Coddy logo textTech

What is Go?

Part of the Fundamentals section of Coddy's GO journey — lesson 1 of 109.

Go (or Golang) is a programming language created by Google in 2009. It's designed to be simple, efficient, and easy to learn.

challenge icon

Challenge

Beginner

Press the run code button to run your first code in Go

Cheat sheet

Go (or Golang) is a programming language created by Google in 2009. It's designed to be simple, efficient, and easy to learn.

Try it yourself

package main

import (
	"fmt"
)

func main() {
	fmt.Println("Hello, World!")
}

All lessons in Fundamentals