Previously we looked at creating and assigning variable names. In this chapter, we will learn how to display each variable or processed value on the screen. The functions provided by Go for printing to the screen are Print(), Println(), and Printf() (the meaning of the functions will be explained later). The screen output function is implemented in a package called ‘fmt’. To use the screen outpu..