Creating and Importing Go Packages

# Introduction In the previous section, you completed your Go program, which included the following lines of code: ```go package main import "fmt" ``` How do we understand these two lines of code? How do we use the `package` and `import` statements? With these questions in mind, let's move on to this section's experiment. In this lab, you will learn how to create and import packages in Go. **Knowledge Points:** - Definition and declaration of a package - Different forms of importing packages

|60 : 00

Click the virtual machine below to start practicing