mirror of
https://github.com/prabirshrestha/vim-lsp.git
synced 2025-12-14 20:35:59 +01:00
12 lines
109 B
Go
12 lines
109 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func documentdiagnostics() {
|
|
msg := "msg"
|
|
fmt.Printf(msg +
|
|
msg +
|
|
msg,
|
|
)
|
|
}
|