DAY 1 - Writing Your First Program in Go
Let鈥檚 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...
gosprint90.hashnode.dev4 min read