10 lines
126 B
Go
10 lines
126 B
Go
package main
|
|
|
|
import (
|
|
"testshared/explicit"
|
|
"testshared/implicit"
|
|
)
|
|
|
|
func main() {
|
|
println(implicit.I() + explicit.E())
|
|
}
|