From 4a5b349b8a21e30fb8850de09c4254b1cb9a6e03 Mon Sep 17 00:00:00 2001 From: Mattia De Vivo <39778636+mattiadevivo@users.noreply.github.com> Date: Sun, 18 Sep 2022 12:22:18 +0200 Subject: [PATCH] Add slices content (#1780) * Update 113-slices.md * Update content/roadmaps/109-golang/content/100-go-basics/113-slices.md Co-authored-by: Kamran Ahmed --- .../109-golang/content/100-go-basics/113-slices.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/100-go-basics/113-slices.md b/content/roadmaps/109-golang/content/100-go-basics/113-slices.md index 18773da0a..93be551a8 100644 --- a/content/roadmaps/109-golang/content/100-go-basics/113-slices.md +++ b/content/roadmaps/109-golang/content/100-go-basics/113-slices.md @@ -1 +1,9 @@ -# Slices \ No newline at end of file +# Slices + +Slices are similar to arrays but are more powerful and flexible. Like arrays, slices are also used to store multiple values of the same type in a single variable. However, unlike arrays, the length of a slice can grow and shrink as you see fit. + +Free Content + +Go Slices +Slices in Go +Learn Go Programming - Slices (by freeCodeCamp on YouTube)