Skip to content

Instantly share code, notes, and snippets.

@sepisoltani
Created October 5, 2021 10:02
Show Gist options
  • Save sepisoltani/65b3d8e710f0063e4099b3e44a427a7b to your computer and use it in GitHub Desktop.
Save sepisoltani/65b3d8e710f0063e4099b3e44a427a7b to your computer and use it in GitHub Desktop.
contract Example{
struct Person {
uint age;
string name;
}
Person[] public people;
function createNewPersonAndAddToArray() public {
// create a New Person:
Person sepehr = Person(25, "sepehr");
// Add that person to the Array:
people.push(sepehr);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment