Go is a programming language created at Google that is gaining popularity among developers due to its simplicity, efficiency, and powerful built-in tools. One of the features that make Go a great choice for developers is its support for comments. Comments are an essential aspect of coding, as they allow developers to document their code, making it more understandable and maintainable. In this article, we will explore the basics of comments in Go, including how to add single-line and multi-line comments to your code, and how to use them effectively. We will also provide some practical examples to help you get started with using comments in your Go code.

Quick Start

Comments in golang

Write some code. In this example we output some text. Then add single and multi line comments.

Copy the code below and save the file as hello.XYZ


package main

import "fmt"

func main() {
   /* This is a multi line comment.
      You can type within this section */
      fmt.Println("Go!")

      // single line comment
      fmt.Println("Lang!")
 }

Video tutorial

Video tutorial below

Exercises

  1. Create a program and add a comment with your name

Download Answers