mirror of
https://github.com/golang/go
synced 2024-11-05 22:26:10 -07:00
12 lines
84 B
Go
12 lines
84 B
Go
|
// build
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
x "./burnin"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
x.NewSomething()
|
||
|
}
|