Newer
Older
exercism-cpp / grains / grains.h
@Wook Song Wook Song on 12 Oct 2022 177 bytes Easy: Add a solution for the exercise, Grains
#if !defined(GRAINS_H)
#define GRAINS_H
typedef unsigned long long ull_t;
namespace grains {
ull_t square(int given);
ull_t total();
}  // namespace grains

#endif  // GRAINS_H