AdSense

網頁

2022/12/4

Golang 註解換行 comment newline

Go程式的註解在註解中空一行即可換行。


範例環境:

  • Go 1.19


範例

例如在main函式上方加上註解,hello和world間以空行註解即為換行。

package main

import "fmt"

// hello
//
// world
func main() {
    fmt.Println("Hello World")
}

在VS Code游標移到main函式上的顯示效果。




沒有留言:

AdSense