Hello World! An Introduction To Solidity Smart Contracts
Hello World!
Solidity is a high level programming language used to interact with the Ethereum Blockchain with what are called "smart contracts". These contracts store the logic intended to run on the Ethereum Virtual Machine (EVM) and can modify the...
blog.paulmcaviney.ca7 min read
Great job on the explanation ππ½ππ½ππ½
I wanted to highlight a mistake on the initial code
instead of
pragma solidity ^0.8.7;you have
pragma solidy ^0.8.7;so I think it should be
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; contract HelloWorld { function sayHello() public pure returns (string memory) { return "Hello World!"; } }I hope you found this helpful.