Skip to content

Instantly share code, notes, and snippets.

@BluePyTheDeer251
Last active November 21, 2024 16:58
Show Gist options
  • Save BluePyTheDeer251/7d59c784b1847f02607d224c89d84770 to your computer and use it in GitHub Desktop.
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.
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