This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.

NEO vs Ethereum

Words
35
Reading
1 min
Listen
Play
9y


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
NEO vs Ethereum | Ecency