test fixes
This commit is contained in:
12
examples/test_code/example.go
Normal file
12
examples/test_code/example.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, World!")
|
||||
greet("Go")
|
||||
}
|
||||
|
||||
func greet(name string) {
|
||||
fmt.Printf("Hello, %s!\n", name)
|
||||
}
|
||||
Reference in New Issue
Block a user