Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save simpleprogrammer-shared/d520dc17ce1c7442b0eb2e4e15d11d6c to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/d520dc17ce1c7442b0eb2e4e15d11d6c to your computer and use it in GitHub Desktop.
Types of Duplication in Code 2
public Position Walk(string direction)
{
var player = GetPlayer();
player.Move(direction);
return player.NewPosition;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment