mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-19 09:15:57 +00:00
15 lines
156 B
Go
15 lines
156 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("hello world")
|
|
}
|
|
|
|
func addOne(x int) int {
|
|
return x + 1
|
|
}
|
|
|
|
func addTwo(x int) int {
|
|
return x + 2
|
|
}
|