Skip to content

Instantly share code, notes, and snippets.

@Ramko9999
Created April 25, 2021 19:31
Show Gist options
  • Save Ramko9999/be2b27066cbc19b8130739150602a1d9 to your computer and use it in GitHub Desktop.
Save Ramko9999/be2b27066cbc19b8130739150602a1d9 to your computer and use it in GitHub Desktop.
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