Skip to content

Instantly share code, notes, and snippets.

@milti
milti / # cairo - 2019-04-01_13-42-25.txt
Created April 2, 2019 16:35
cairo on macOS 10.14.5 - Homebrew build logs
Homebrew build logs for cairo on macOS 10.14.5
Build date: 2019-04-01 13:42:25
@milti
milti / ballot.sol
Created November 3, 2018 17:53
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.4.25+commit.59dbf8f1.js&optimize=true&gist=
pragma solidity ^0.4.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {