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🎃
- Host: GitHub
- URL: https://github.com/codeperfectplus/golangdive
- Owner: codeperfectplus
- License: mit
- Created: 2020-01-14T03:48:37.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-05T14:39:26.000Z (about 3 years ago)
- Last Synced: 2025-07-13T08:49:19.976Z (6 months ago)
- Topics: basic-programming, codeperfect, codeperfectplus, go, golang
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.

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