mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-08-03 15:18:16 +00:00
add example of go project
This commit is contained in:
parent
582589af60
commit
80ee356a06
14 changed files with 287 additions and 0 deletions
15
test_proj/go/main.go
Normal file
15
test_proj/go/main.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue