mirror of
https://github.com/github/semantic.git
synced 2024-12-19 12:51:52 +03:00
10 lines
81 B
Go
10 lines
81 B
Go
|
package main
|
||
|
|
||
|
import "./foo"
|
||
|
import . "./bar"
|
||
|
|
||
|
func main() {
|
||
|
foo.New()
|
||
|
Bar()
|
||
|
}
|