mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 05:23:26 +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;
|
|
}
|
|
|
|
}
|