test(build):collect llgo test ./... output to test
This commit is contained in:
16
cl/_testgo/runextest/main.go
Normal file
16
cl/_testgo/runextest/main.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/goplus/llgo/cl/_testgo/runextest/bar"
|
||||
"github.com/goplus/llgo/cl/_testgo/runextest/foo"
|
||||
)
|
||||
|
||||
func Zoo() int {
|
||||
return 3
|
||||
}
|
||||
|
||||
func main() {
|
||||
println("foo.Foo()", foo.Foo())
|
||||
println("bar.Bar()", bar.Bar())
|
||||
println("Zoo()", Zoo())
|
||||
}
|
||||
Reference in New Issue
Block a user