blob: f7a7ade37467653d1f0fb461e66f6cdc6e309ce1 [file] [log] [blame]
package main
import (
"fmt"
"os"
)
func test() {
pwd, err := os.Getwd()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Println(pwd)
}
func main() {
test()
}