fund()
Record funding for a project.
Usage
fund(
project,
amount,
)Parameters
project: str-
The name of the project to fund.
amount: float-
The funding amount in dollars.
Returns
dict-
A dictionary with funding details.
Examples
>>> fund("research", 50000.0)
{'project': 'research', 'amount': 50000.0}