14 lines
191 B
C++
14 lines
191 B
C++
#pragma once
|
|
|
|
#define EXERCISM_RUN_ALL_TESTS
|
|
|
|
|
|
namespace grains {
|
|
|
|
typedef unsigned long long ulong_t;
|
|
typedef unsigned int index_t;
|
|
|
|
ulong_t square(index_t index);
|
|
ulong_t total();
|
|
|
|
}
|