delve/_fixtures/buildtest/main.go
Alessandro Arzilli 5d78c04e62 dlv: bugfix: Allow quoting in build flags argument (#639)
Allows quoted substrings in build-flags flag. This fixes a build
problem on windows where the default build flags must contain a space.

Fixes #634 and #638
2016-09-25 08:26:59 -07:00

8 lines
73 B
Go

package main
import "fmt"
func main() {
fmt.Println("hello world!")
}