Skip to content

Instantly share code, notes, and snippets.

View crypto-jones's full-sized avatar

Jeremy Jones crypto-jones

View GitHub Profile
@crypto-jones
crypto-jones / Voting.sol
Created April 26, 2024 22:55
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.25+commit.b61c2a91.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Voting {
address public owner;
mapping(string => uint) public votes;
string[] public choices;
constructor() {