gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/workdir.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"os"
     6  )
     7  
     8  func main() {
     9  	pwd, err := os.Getwd()
    10  	if err != nil {
    11  		fmt.Println(err)
    12  		os.Exit(1)
    13  	}
    14  	fmt.Println(pwd)
    15  }