Introduction
Lesson 1 of 19 in Coddy's Functions and Pointers in Golang course.
In programming, functions are an important concept that you need to fully understand in order to build any kind of program.
Functions, in brief, are blocks of code that we define once and call whenever we need them. They allow us to reuse the same code multiple times, making our code more modular and maintainable.
In this course, we will learn how functions work alongside pointers in Go, with a variety of interesting examples and challenges that will help you become more comfortable working with functions.
Note: This course is a continuation of our GoLang series. If you are a total beginner in GoLang, it's essential to take the first courses first in order to understand what we do in this course.
- Disclaimer -
In order to succeed in this course, it is important to actively engage with the material. Be sure to attempt the challenges on your own first. If you encounter difficulty, you can refer to the hints and eventually the solution (if necessary).
Let's get started!😍
Try it yourself
This lesson doesn't include a code challenge.
All lessons in Functions and Pointers in Golang
1Introduction
Introduction4Rebuild Go Strings Functions
Strings in GolangJoin FunctionContains FunctionIndex FunctionRecap Challenge #1