Add Solidity language

This commit is contained in:
Doga Genc
2018-08-12 15:38:54 +03:00
parent 220bf4da45
commit ef01c5ad22
2 changed files with 8 additions and 0 deletions

7
s/Solidity.sol Normal file
View File

@@ -0,0 +1,7 @@
pragma solidity ^0.4.24;
contract HelloWorld {
function render () public pure returns (string) {
return 'Hello World';
}
}