1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 21:11:44 +02:00

Add data types resources (#1706)

* Update 102-data-types.md

* Update content/roadmaps/109-golang/content/100-go-basics/102-data-types.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Hijen EL Khalifi
2022-09-06 22:47:34 +01:00
committed by GitHub
parent 0e1313a11e
commit b090c755ef

View File

@@ -1 +1,10 @@
# Data types
# Data Types
Go is a statically typed programming language, which means each variable has a type defined at first and can only hold values with that type. There are two categories of types in Go: basics types and composite types.
To learn more about types in Go, visit these resources :
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.w3schools.com/go/go_data_types.php'>Basic data types</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/tour/basics/11'>Tour of Go: types</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://golangbyexample.com/all-data-types-in-golang-with-examples/'>Go types with examples</BadgeLink>