Introduction
Functions are used a lot in programming. They are pieces of code with name, which receive parameters and return values.
One of the great benefits is not having to copy the code every time you need to perform that operation, in addition to making reading the code more intuitive.
func Myfunction(parameter string) string {...}