Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.18 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections.Generic;
  6.  
  7. namespace ConsoleApplication3
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             List<string> nana = new List<string>();
  14.  
  15.             nana.Add(" A Ham and cheese sandwhich");
  16.             nana.Add(" A Turkey sandwhich with bacon");
  17.             nana.Add(" A bolonga sandwhich with bacon");
  18.             nana.Add(" A Peanut butter and jelly sandwhich with bacon");
  19.             nana.Add(" A Mutha fucking BLT, not lettuce, no tomato, no bread, and don't shit me on the fucking bacon");
  20.             nana.Add(" something EpicMealTime makes. That shit looks delicious. Don't forget the fucking bacon either.");
  21.             nana.Add(" A vietnamese sandwich. Extra bacon.");
  22.             nana.Add(" A pack of bacon. Deep fry that shit");
  23.  
  24.             while (true)
  25.             {
  26.                 Random r = new Random();
  27.                 string joke = "Bitch, get in the kitchen and make me" + nana[r.Next(0, nana.Count)];
  28.                 Console.WriteLine(joke);
  29.                 Console.ReadLine();
  30.             }
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement