Code has been added to clipboard!

Setting Arguments in Solidity Functions

Example
contract priced {
    modifier costs(uint price) {
        if (msg.value >= price) {
            _;
        }
    }
}