🔧 Go Functions

Functions in Go are first-class citizens — you can assign them to variables, pass them around, and return them from other functions.

📝 Example: Basic Function

Output will appear here...

📖 Key Points

💡 Tip: Functions in Go can return multiple values, often used for returning results and errors side-by-side.
-