1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 12:40:03 +02:00

Add type inference resources (#1752)

* Update 111-type-inference.md

* Update content/roadmaps/109-golang/content/100-go-basics/111-type-inference.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Hijen EL Khalifi
2022-09-14 11:22:23 +01:00
committed by GitHub
parent 56a0d07c1f
commit 1ee1237851

View File

@@ -1 +1,7 @@
# Type inference
# Type Inference
Type inference gives go the capability to detect the type of a value without being explicitly indicated , hence the posibility to declare variables without providing its type at first
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.callicoder.com/golang-variables-zero-values-type-inference/#type-inference'>Go Variables: Type Inference</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/tour/basics/14'>Tour of Go: Type Inference</BadgeLink>