Fix print()

This commit is contained in:
Samuel Oberhofer
2022-06-24 16:38:28 +02:00
parent 8f7a0903be
commit 312fdb44a4
+1 -1
View File
@@ -2,6 +2,6 @@
#include <iostream>
void CashInstance::print() {
std::cout << " Value: " << value << "\tamount: " << availableAmount
std::cout << "Value: " << value << "\tamount: " << availableAmount
<< std::endl;
}