PHP » GoLang |
login |
register |
about
|
getcwdgetcwd[code]
func Getcwd() (string, error) {
dir, err := os.Getwd()
return dir, err
}
[/code]
|