Skip to Content
🎉 Wiki 1.0.0 is finally here!.
GolangIntroduction

Introduction

Golang is a programming language that is designed to be simple, efficient, and fast. It is a statically typed, compiled language that is easy to learn and use. It is a general-purpose language that is used for a wide range of applications, from web development to system programming.

Installation

Follow the guide on the official Golang website .

Basic Commands

Check Golang Version

go version

Create a New Go Project

go new myproject

Run a Go Program

go run main.go

Build a Go Program

go build main.go
Last updated on