Files
2020-09-23 00:00:21 -04:00

8 lines
100 B
Solidity

pragma solidity ^0.7.1;
library Lib {
function f() internal returns (uint) {
return 7;
}
}