25 lines
437 B
Go
25 lines
437 B
Go
|
package main
|
||
|
|
||
|
// list every possible way of importing to try and break dependency detection
|
||
|
// http://learngowith.me/alternate-ways-of-importing-packages/
|
||
|
|
||
|
import "fmt"
|
||
|
import "compress/gzip"
|
||
|
import "github.com/golang/example/stringutil"
|
||
|
import (
|
||
|
"log"
|
||
|
"os"
|
||
|
)
|
||
|
import newname "oldname"
|
||
|
import . "direct"
|
||
|
import _ "supress"
|
||
|
import (
|
||
|
"foobar"
|
||
|
. "math"
|
||
|
_ "image/gif"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello, World!")
|
||
|
}
|