Advertisement
xgeovanni

revenge

Aug 24th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8.     class person
  9.     {
  10.         public bool mocksPython;
  11.     }
  12.  
  13.     class Program
  14.     {
  15.         static void Main(string[] args)
  16.         {
  17.             person glenn = new person()
  18.             {
  19.                 mocksPython = true
  20.             };
  21.  
  22.             if (glenn.mocksPython)
  23.             {
  24.                 Console.Write("Screw you, man. Python is epic.");
  25.             }
  26.            
  27.             Console.ReadKey();
  28.            
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement