1Million - Liquid Wealth

# 1Million - Premium gold and navy palette
class Investment:
    def __init__(self, capital: int = 1000000):
        self.capital = capital
        self.currency = "USD"
        self.is_premium = True

    def compound(self, rate: float) -> int:
        # Calculate the ROI on gold assets
        growth = self.capital * rate
        self.capital += int(growth)
        print(f"New value: {self.capital} {self.currency}")
        return self.capital

if __name__ == "__main__":
    gold_fund = Investment()
    gold_fund.compound(0.08)