Skip to content

Instantly share code, notes, and snippets.

View XuDafang's full-sized avatar

Shuai Xu XuDafang

View GitHub Profile
@arxdsilva
arxdsilva / working_directory.go
Last active February 12, 2024 13:30
How to get the current working directory in golang
package main
// More info on Getwd()
// https://golang.org/src/os/getwd.go
//
import(
"os"
"fmt"
"log"
)