Skip to content

Instantly share code, notes, and snippets.

@Getaji
Created November 16, 2013 11:27
Show Gist options
  • Save Getaji/7499141 to your computer and use it in GitHub Desktop.
Save Getaji/7499141 to your computer and use it in GitHub Desktop.
UFCS。
import std.stdio;
@property
void say(string)(string name)
{
writeln("Hello, I am ", name, "!");
}
int main(string[] argv)
{
"Getaji".say;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment