Skip to content

Instantly share code, notes, and snippets.

@6a6f6a6f
Created February 23, 2022 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 6a6f6a6f/c961a715762ebf42e2bdf4a87bd06b6e to your computer and use it in GitHub Desktop.
Save 6a6f6a6f/c961a715762ebf42e2bdf4a87bd06b6e to your computer and use it in GitHub Desktop.
var passwd = Encoding.Default.GetBytes("s3nh4_s3g5r4");
var givenPasswd = Encoding.Default.GetBytes(Console.ReadLine());
if (passwd.Equals(givenPasswd))
{
Console.WriteLine("oh not :(");
Environement.Exit(0);
}
Environement.Exit(-1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment