Last active
November 21, 2024 16:58
-
-
Save BluePyTheDeer251/7d59c784b1847f02607d224c89d84770 to your computer and use it in GitHub Desktop.
Some Dart war crimes that put me in the FBI most wanted programmers list.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
void main() { | |
for (int i = 1; i < 1000000000; i++) { | |
print(i); | |
} | |
// Good luck with this one. | |
print("Enter your password (any): "); | |
String? password = stdin.readLineSync(); | |
if (password != null) { | |
print("Thanks for $password, now have access to your account (I do not)"); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment