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

https://github.com/codeperfectplus/golangdive

Basic Go Programing Syntex For learning Purpose🎃
https://github.com/codeperfectplus/golangdive

basic-programming codeperfect codeperfectplus go golang

Last synced: 3 months ago
JSON representation

Basic Go Programing Syntex For learning Purpose🎃

Awesome Lists containing this project

README

          

# GoLang

## `Introduction`
Go language is a programming language initially developed at Google in the year 2007 by Robert Griesemer, Rob Pike, and Ken Thompson. It is a statically-typed language having syntax similar to that of C. It provides garbage collection, type safety, dynamic-typing capability, many advanced built-in types such as variable length arrays and key-value maps. It also provides a rich standard library. The Go programming language was launched in November 2009 and is used in some of the Google's production systems.

![](https://skywell.software/wp-content/uploads/2019/05/go-programming-language-1024x512.jpg)

For Download GO Click On Download Button [Download](https://golang.org/dl/)

## `DaTa-Type`
Data-Type specify the type of data that a valid `Go-Varible` can hold.
In Golang there 4 types of data-types.
- Basic Types --> Numbers, Strings and Booleans
- Aggretae type --> Array And Structs
- Reference Type --> Pointers, Sclices , Maps, Functions and channels
- Interface Type -->