The Most Important Golang Syntax You Need To Know In 2022!

Manpreet Singh
4 min readJul 9, 2022

Welcome back! Golang is an awesome programming language with a ton of capability, if you’re new to Golang, check out the link below to learn more about it:

So, let’s talk about some of the most important Golang syntax you need to know in 2022!

Functions

Starting off, let’s talk about functions! Functions are pieces of code that will run only when it’s called, you can also pass parameters into a function as well, let’s take a look at an example.

This example is of a basic function, it simply prints out a basic statement:

package main

import "fmt"
func printfunction() {
fmt.Println("This Is a Function")
}

Now, functions can get very complicated, but this is a very basic example, so how do you use this function? It’s easy, you simply call it just like this:

func main() {
printfunction()
}

That will call that function, and the block of code will essentially run. Now, here are…

--

--