mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-02 17:03:36 +00:00
12 lines
134 B
Solidity
12 lines
134 B
Solidity
contract DataSource {
|
|
uint public storeData;
|
|
|
|
function DataSource() {
|
|
}
|
|
|
|
function set(uint num) {
|
|
storeData = num;
|
|
}
|
|
|
|
}
|