NEO vs Ethereum


NEO vs Ethereum
pragma solidity ^0.4.0;

contract SimpleStorage {
uint storedData;

function set(uint x) public {
    storedData = x;
}

function get() public constant returns (uint) {
    return storedData;
}

}


▶️ DTube
▶️ IPFS
H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now