Files
hello-world/s/Solidity.sol
2018-08-12 15:40:00 +03:00

8 lines
140 B
Solidity

pragma solidity ^0.4.24;
contract HelloWorld {
function render () public pure returns (string) {
return 'Hello World';
}
}