forked from solstice/solstice
14 lines
244 B
Plaintext
14 lines
244 B
Plaintext
accessNotGranted = true
|
|
|
|
while accessNotGranted {
|
|
password = input("Password: ")
|
|
if password == "dingus" {
|
|
accessNotGranted = false
|
|
}
|
|
if password != "dingus" {
|
|
puts "Incorrect password!"
|
|
}
|
|
}
|
|
|
|
puts "Welcome!"
|