mirror of https://github.com/embarklabs/embark.git
10 lines
138 B
Solidity
10 lines
138 B
Solidity
|
pragma solidity ^0.4.17;
|
||
|
|
||
|
library ZAMyLib2 {
|
||
|
|
||
|
function add(uint _a, uint _b) public pure returns (uint _c) {
|
||
|
return _a + _b;
|
||
|
}
|
||
|
|
||
|
}
|