Rudra
Rudra's blog

Rudra's blog

Follow
Follow
homeWeb securityGo learningbadgesnewsletter
Tag

programming languages

#programming-languages

More content

Read more stories on Hashnode


Articles with this tag

#02 The Basic Structure of the Go file

May 1, 20221 min read

A go file has the following parts: Package declaration Import packages main() function Example: package main import "fmt" func main() { ...

#02 The Basic Structure of the Go file