# Hello World Smart Contract

By [boomks.eth](https://paragraph.com/@boomgt) · 2022-05-25

---

    // My First Smart Contract 
    pragma solidity >=0.5.0 <0.7.0;
    contract HelloWorld {
        function get()public pure returns (string memory){
            return 'Hello Contracts';
        }
    }

---

*Originally published on [boomks.eth](https://paragraph.com/@boomgt/hello-world-smart-contract)*
