Created
August 7, 2015 17:24
-
-
Save 178inaba/f31fab17ea6fb0b5d996 to your computer and use it in GitHub Desktop.
make directory from go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| ) | |
| func main() { | |
| fmt.Println(os.Mkdir("config", os.ModePerm)) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment