Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brynbellomy/4b20ee9e898789e2060aef95fafc4999 to your computer and use it in GitHub Desktop.
Save brynbellomy/4b20ee9e898789e2060aef95fafc4999 to your computer and use it in GitHub Desktop.
medium-return-struct-public-func-2.sol
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