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