mirror of
https://github.com/golang/go
synced 2024-11-08 00:06:17 -07:00
11 lines
126 B
Go
11 lines
126 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testshared/explicit"
|
||
|
"testshared/implicit"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
println(implicit.I() + explicit.E())
|
||
|
}
|