#if !defined(SCRABBLE_SCORE_H) #define SCRABBLE_SCORE_H #include <string> namespace scrabble_score { int score(std::string s); } // namespace scrabble_score #endif // SCRABBLE_SCORE_H