From f8fda0579d592002fcb111305972b100824c7fea Mon Sep 17 00:00:00 2001 From: Hijen EL Khalifi Date: Thu, 25 Aug 2022 12:56:18 +0100 Subject: [PATCH] Add go functions resources (#1602) * Update 108-functions.md * Update content/roadmaps/109-golang/content/100-go-basics/108-functions.md Co-authored-by: Kamran Ahmed --- .../content/100-go-basics/108-functions.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/100-go-basics/108-functions.md b/content/roadmaps/109-golang/content/100-go-basics/108-functions.md index cebcc2697..5f9c72dc7 100644 --- a/content/roadmaps/109-golang/content/100-go-basics/108-functions.md +++ b/content/roadmaps/109-golang/content/100-go-basics/108-functions.md @@ -1 +1,12 @@ -# Functions \ No newline at end of file +# Functions + +Discover how functions work in Go, the list of resources below will cover : + + - How to define and call functions in Go? + - Named returns in Go? + - Handle multiple return types. + - Different types of functions in Go. + +Free Content +Go by Example: Functions +Functions in go