DAY 1 - Writing Your First Program in Go
Let’s write our very first program in Go!
Example: Hello World
package main
import "fmt"
func main() {
fmt.Println("Hello Developers!!")
}
I think you all guessed the output correctly 😄
How to run this code
Open your terminal, navigate to th...