Guest User

Untitled

a guest
Nov 24th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. pragma solidity ^0.4.18;
  2.  
  3. contract M2M{
  4.  
  5. function setvalues(uint a ,uint b) returns (uint){
  6. return a;
  7. }
  8.  
  9.  
  10. function caller() public returns (uint) {
  11. return setvalues({b:90,a:45});
  12. }
  13. }
Add Comment
Please, Sign In to add comment