Merge pull request #489 from dogagenc/master

Add Solidity language https://solidity.readthedocs.io
This commit is contained in:
Mike Donaghy 2019-07-23 07:23:17 -05:00 committed by GitHub
commit 0b22b325d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -448,6 +448,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Smil](s/smil.smil)
* [Sml](s/sml.sml)
* [Snowman](s/snowman.sm)
* [Solidity](s/Solidity.sol)
* [Soupscript](s/soupscript.script)
* [Sparql](s/sparql.sparql)
* [Spoon](s/spoon.spoon)

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';
}
}