From db664cc4a5d866abd320acc73574a8310afab354 Mon Sep 17 00:00:00 2001 From: Hijen EL Khalifi Date: Thu, 8 Sep 2022 14:36:47 +0100 Subject: [PATCH] Add type casting docs in golang (#1714) * Update 110-type-casting.md * Update content/roadmaps/109-golang/content/100-go-basics/110-type-casting.md Co-authored-by: Kamran Ahmed --- .../109-golang/content/100-go-basics/110-type-casting.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/100-go-basics/110-type-casting.md b/content/roadmaps/109-golang/content/100-go-basics/110-type-casting.md index 9dccbd068..91830ebf2 100644 --- a/content/roadmaps/109-golang/content/100-go-basics/110-type-casting.md +++ b/content/roadmaps/109-golang/content/100-go-basics/110-type-casting.md @@ -1 +1,8 @@ -# Type casting \ No newline at end of file +# Type Casting + +Go doesn't support automatic type conversion, but it allows type casting, which is the process of explicitly changing the variable type. To learn more about typecasting, visit these resources : + +Free Content +Geeks for Geeks: Type casting +Tour of Go: Type Casting Basics +Go Docs: Type Casting