You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* When writing solidity, we most times have to perform some mathematical operations like multiplication etc
*
* The task is to write within the `MAIN` macro below, a function named `multiply` that takes in 2 uint256s, and returns their product. Be sure to revert on overflow
*
* NOTICE: The contract should revert when an unrecognized function is called
*/
#define function multiply(uint256, uint256) payable returns(uint256)