Created
April 25, 2021 19:31
-
-
Save Ramko9999/be2b27066cbc19b8130739150602a1d9 to your computer and use it in GitHub Desktop.
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
import ( | |
"log" | |
"os" | |
) | |
func makeDir(){ | |
err := os.Mkdir("newDirectory", 0755); | |
if err != nil { | |
log.Fatal(err); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment