Created
October 22, 2014 10:30
-
-
Save arialdomartini/b9206bda3c92ed2f8568 to your computer and use it in GitHub Desktop.
Nullity
This file contains hidden or 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
namespace Nullity | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
String nullity = null; | |
if (nullity == null) | |
{ | |
Console.WriteLine("Yeeeeeee"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment