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