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