Skip to content

Instantly share code, notes, and snippets.

@t0code
Created October 28, 2015 03:00
Show Gist options
  • Save t0code/192bc73b15a6383bb94b to your computer and use it in GitHub Desktop.
Save t0code/192bc73b15a6383bb94b to your computer and use it in GitHub Desktop.
whats wrong here?
def check_account(acct, pass)
file = File.open("account.txt", "r")
while !file.eof?
line = file.readline
if line.include?(acct) && line.include?(pass)
file.close
return 1
end
file.close
return 0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment