mirror of https://github.com/embarklabs/embark.git
12 lines
134 B
Solidity
12 lines
134 B
Solidity
|
contract DataSource {
|
||
|
uint public storeData;
|
||
|
|
||
|
function DataSource() {
|
||
|
}
|
||
|
|
||
|
function set(uint num) {
|
||
|
storeData = num;
|
||
|
}
|
||
|
|
||
|
}
|