mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 05:23:26 +00:00
17 lines
258 B
Solidity
17 lines
258 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
import "./zlib2.sol";
|
|
|
|
contract Test2 {
|
|
address public addr;
|
|
|
|
function testAdd() public pure returns (uint _result) {
|
|
return ZAMyLib2.add(1, 2);
|
|
}
|
|
|
|
function changeAddress(address _addr) public {
|
|
addr = _addr;
|
|
}
|
|
|
|
}
|