diff --git a/Solidity/HelloWorld.sol b/Solidity/HelloWorld.sol new file mode 100644 index 0000000..6346227 --- /dev/null +++ b/Solidity/HelloWorld.sol @@ -0,0 +1,11 @@ +// LANGUAGE: solidity +// ENV: Sol +// AUTHOR: Aditya Chaplot +// GITHUB: https://github.com/adielliot37 + + +pragma solidity ^0.8.13; + +contract HelloWorld { + string public greet = "Hello World!"; +}