mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
11 lines
283 B
C++
11 lines
283 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace vehicle_purchase {
|
|
|
|
bool needs_license(std::string kind);
|
|
std::string choose_vehicle(std::string option1, std::string option2);
|
|
double calculate_resell_price(double original_price, double age);
|
|
|
|
} // namespace vehicle_purchase
|