Skip to content

Instantly share code, notes, and snippets.

View codeanyway11's full-sized avatar

Charu Agarwal codeanyway11

View GitHub Profile
@codeanyway11
codeanyway11 / Contest.sol
Last active December 15, 2017 19:24
Solidity Contract for Hackathon.
pragma solidity ^0.4.0;
contract Contest{
struct Participant {
string email;
address account;
bool participated;
}