// Solidity program to // demonstrate pure functions pragma solidity ^0.4.18; // Defining a contract contract Test { // Defining pure function to // calculate product and sum // of 2 numbers function getResult() public pure returns(uint product, uint sum) { uint num1 = 75; uint num2 = 92; product = num1 * num2; sum = num1 + num2; } }
0.4.18