Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codebase improvements #336

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
chore: remove commented code
raklaptudirm authored Sep 5, 2021
commit c16f37456e1b577b715562cc1244f246ba51adc7
14 changes: 0 additions & 14 deletions other/password_generator/passwordgenerator.go
Original file line number Diff line number Diff line change
@@ -37,17 +37,3 @@ func GeneratePassword(minLength int, maxLength int) string {
}
}
}

// func main() {
// rand.Seed(time.Now().Unix())

// fmt.Print("Please specify a minimum length: ")
// var minLength int
// fmt.Scanf("%d", &minLength)

// fmt.Print("Please specify a maximum length: ")
// var maxLength int
// fmt.Scanf("%d", &maxLength)

// fmt.Printf("Your generated password is %v\n", generatePassword(minLength, maxLength))
// }