Created
July 11, 2017 20:57
-
-
Save brynbellomy/4b20ee9e898789e2060aef95fafc4999 to your computer and use it in GitHub Desktop.
medium-return-struct-public-func-2.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.13; | |
contract Project | |
{ | |
struct Person { | |
string name; | |
uint funds; | |
} | |
mapping(address => Person) public people; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment