Skip to content

Instantly share code, notes, and snippets.

@dylanroy
Created April 6, 2013 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dylanroy/5325206 to your computer and use it in GitHub Desktop.
Save dylanroy/5325206 to your computer and use it in GitHub Desktop.
class Roadster : IVehicle
{
private String _Make = "Tesla Motors, Inc.";
public String Drive()
{
return "Varoom Varoom";
}
public String GetMake()
{
return _Make;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment