Skip to content

Instantly share code, notes, and snippets.

View martinsnelson's full-sized avatar
🏠
Working from home

Nelson Martins martinsnelson

🏠
Working from home
View GitHub Profile
@martinsnelson
martinsnelson / BlockchainAdv.sol
Created July 21, 2022 20:48
Smart contract example with solidity
pragma solidity >=0.4.0 <0.8.15;
contract Bolao {
address private gerente;
address[] private jogadores;
constructor() public
{
gerente = msg.sender;
}