From 99b063ef59299e4d02cfdadd2dbbed644c625e07 Mon Sep 17 00:00:00 2001 From: Giorgos Dimitriadis Date: Mon, 26 Sep 2022 20:17:46 +0300 Subject: [PATCH] content for Golang's make function (#1870) * content for Go maps * content for Golang's make function --- .../109-golang/content/100-go-basics/115-make.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/100-go-basics/115-make.md b/content/roadmaps/109-golang/content/100-go-basics/115-make.md index fe4af3cbd..43386edd4 100644 --- a/content/roadmaps/109-golang/content/100-go-basics/115-make.md +++ b/content/roadmaps/109-golang/content/100-go-basics/115-make.md @@ -1 +1,9 @@ -# Make \ No newline at end of file +# Make + +Golang's built-in function make, helps us create and initialize slices, maps and channels, depending on the arguments that are provided to the function. + +Free Content + +Create a slice with make +Create a map with make +Create a channel with make \ No newline at end of file