Files

17 lines
261 B
Go
Raw Permalink Normal View History

2024-12-31 10:53:38 +08:00
package main
import (
2025-04-03 16:20:09 +08:00
"github.com/goplus/llgo/cl/_testgo/runtest/bar"
"github.com/goplus/llgo/cl/_testgo/runtest/foo"
2024-12-31 10:53:38 +08:00
)
func Zoo() int {
return 3
}
func main() {
println("foo.Foo()", foo.Foo())
println("bar.Bar()", bar.Bar())
println("Zoo()", Zoo())
}