From b090c755ef4224b9b394d27d711f594a45b45150 Mon Sep 17 00:00:00 2001 From: Hijen EL Khalifi Date: Tue, 6 Sep 2022 22:47:34 +0100 Subject: [PATCH] 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 --- .../content/100-go-basics/102-data-types.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/100-go-basics/102-data-types.md b/content/roadmaps/109-golang/content/100-go-basics/102-data-types.md index c0d6b9473..47ca89abb 100644 --- a/content/roadmaps/109-golang/content/100-go-basics/102-data-types.md +++ b/content/roadmaps/109-golang/content/100-go-basics/102-data-types.md @@ -1 +1,10 @@ -# Data types \ No newline at end of file +# 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 : + +Free Content +Basic data types +Tour of Go: types +Go types with examples