https://github.com/martincastroalvarez/go-lang-app
GoLang Application
https://github.com/martincastroalvarez/go-lang-app
Last synced: about 1 year ago
JSON representation
GoLang Application
- Host: GitHub
- URL: https://github.com/martincastroalvarez/go-lang-app
- Owner: MartinCastroAlvarez
- Created: 2024-02-09T18:09:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-09T18:41:54.000Z (over 2 years ago)
- Last Synced: 2025-02-14T17:31:08.633Z (over 1 year ago)
- Language: Go
- Size: 1.43 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-lang-app
GoLang Application

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
```