diff --git a/README.md b/README.md index ebfea3d..59e38eb 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/s/Solidity.sol b/s/Solidity.sol new file mode 100644 index 0000000..f331e57 --- /dev/null +++ b/s/Solidity.sol @@ -0,0 +1,7 @@ +pragma solidity ^0.4.24; + +contract HelloWorld { + function render () public pure returns (string) { + return 'Hello World'; + } +}