Initial work on calculator program.

This commit is contained in:
2026-06-28 11:02:36 -04:00
parent c2e6810a9e
commit 912e12399d
7 changed files with 83 additions and 0 deletions

15
calculator/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <iostream>
#include "Recipe.h"
int main()
{
Recipe test;
auto ingredients = test.Ingredients();
ingredients = test.Ingredients(2.5);
for(const auto &i : ingredients)
std::cout << i.first.Name() << ", " << i.second << std::endl;
return 0;
}