From 24533cc8879ae485caaef3634d91b319523fb942 Mon Sep 17 00:00:00 2001 From: Beryl Atieno <107188748+BerylCAtieno@users.noreply.github.com> Date: Mon, 29 Jul 2024 11:53:04 +0300 Subject: [PATCH] update Go types and type assertions (#6260) * update Go types and type assertions * Update src/data/roadmaps/golang/content/101-go-advanced/102-types-and-type-assertions.md --------- Co-authored-by: dsh --- .../content/101-go-advanced/102-types-and-type-assertions.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/data/roadmaps/golang/content/101-go-advanced/102-types-and-type-assertions.md b/src/data/roadmaps/golang/content/101-go-advanced/102-types-and-type-assertions.md index 794d95a82..3bb18728d 100644 --- a/src/data/roadmaps/golang/content/101-go-advanced/102-types-and-type-assertions.md +++ b/src/data/roadmaps/golang/content/101-go-advanced/102-types-and-type-assertions.md @@ -1,7 +1,10 @@ # Types and type assertions +Types in Golang specify the data type that a valid Go variable can hold. Golang has four categories of Types including Basic, Aggregate, Reference, and Interface Types + Type assertions in Golang provide access to the exact type of variable of an interface. Visit the following resources to learn more: - [@official@Types Assertions ](https://go.dev/tour/methods/15) +- [@video@Go Syntax - Type Assertions ](https://youtube.com/watch?v=vtGbi9bGr3s)