Code has been added to clipboard!

Solidity View Functions Example

Example
pragma solidity ^0.4.16;

contract cont {
    function func(uint x, uint y) view returns (uint) {
        return x * (y + 42) + now;
    }
}