Skip to content

Instantly share code, notes, and snippets.

@vasily-kirichenko
Created July 14, 2012 12:59
Show Gist options
  • Save vasily-kirichenko/3111157 to your computer and use it in GitHub Desktop.
Save vasily-kirichenko/3111157 to your computer and use it in GitHub Desktop.
Not null in Nemerle
class Person
{
public Name: string;
public this([NotNull] name: string)
{
Name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment