Skip to content

Instantly share code, notes, and snippets.

@Maxcutex
Last active April 7, 2019 17:56
Show Gist options
  • Save Maxcutex/41eb898d3a8a2967ab308693d8c0eb61 to your computer and use it in GitHub Desktop.
Save Maxcutex/41eb898d3a8a2967ab308693d8c0eb61 to your computer and use it in GitHub Desktop.
ElectionProject
pragma solidity 0.4.24;
contract Election {
// Read/write candidate
string public candidate;
// Constructor
constructor () public {
candidate = "Candidate 1";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment