@ -0,0 +1,8 @@
#include "currencyExchange.h"
float toUSD(float euro) {
float USD = euro * CURRENT_USD_RATE_OF_ONE_EURO;
return USD;
}