mirror of
https://github.com/golang/go
synced 2024-11-07 06:36:14 -07:00
14 lines
203 B
Go
14 lines
203 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"./Äfoo"
|
||
|
Äblix "./Äfoo"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Printf("Äfoo.Äbar(33) returns %v\n", Äfoo.Äbar(33))
|
||
|
fmt.Printf("Äblix.Äbar(33) returns %v\n", Äblix.Äbar(33))
|
||
|
}
|