12 lines
134 B
C++
12 lines
134 B
C++
#pragma once
|
|
|
|
#define EXERCISM_RUN_ALL_TESTS
|
|
|
|
#include <string>
|
|
|
|
namespace scrabble_score {
|
|
|
|
int score(const std::string &input);
|
|
|
|
}
|
|
|