A Simple Smart Contract¶ Let us begin with a basic example that sets the value of a variable and exposes it for other contracts to access. It is fine if you do not understand everything right now, we will go into more detail later. // SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.4.16 <0.7.0; contract SimpleStorage { uint storedData; function set(uint x) public { storedData = x; } function