Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/martincastroalvarez/go-lang-app

GoLang Application
https://github.com/martincastroalvarez/go-lang-app

Last synced: 12 days ago
JSON representation

GoLang Application

Awesome Lists containing this project

README

        

# go-lang-app
GoLang Application

![wallpaper.jpg](wallpaper.jpg)

Go, often referred to as Golang because of its domain name (golang.org), is a statically typed, compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson. It was officially announced in November 2009 and has since grown in popularity, being used in many Google production systems and other large-scale projects.

Go is known for its simplicity, efficiency, and strong support for concurrent programming. Its syntax is clean and concise, aiming to be expressive yet unambiguous. Here are some key features and characteristics of Go:

## Instructions

Compile and run program:

```bash
go run main.go
```

Compile binary executable:

```bash
go build
```