1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 11:33:09 +01:00

Add variables content (#1592)

* Update 101-variables.md

* Update content/roadmaps/109-golang/content/100-go-basics/101-variables.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Hijen EL Khalifi 2022-08-24 12:46:51 +01:00 committed by GitHub
parent ff18afbff3
commit cda0c37b07

View File

@ -1 +1,8 @@
# Variables
# Variables in Go
Variable is the name given to a memory location to store a value of a specific [type](https://golangbot.com/types/). Go provides multiple ways to declare and use variables.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/tour/basics/8'>Go Variables</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://gobyexample.com/variables'>Go by Example: Variables</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.w3schools.com/go/go_variables.php'>w3schools Go variables</BadgeLink>