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 January 6, 2025 19:29
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"
)