mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
7 lines
119 B
Solidity
7 lines
119 B
Solidity
|
pragma solidity ^0.4.9;
|
||
|
|
||
|
contract Test {
|
||
|
function double(int a) constant returns(int) {
|
||
|
return 2*a;
|
||
|
}
|
||
|
}
|