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