exercism-solutions/cpp/scrabble-score/scrabble_score.h

12 lines
134 B
C++

#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <string>
namespace scrabble_score {
int score(const std::string &input);
}