Skip to content

Instantly share code, notes, and snippets.

@svanas
Last active October 1, 2023 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svanas/249302dd1300e325a1ac82e713469e55 to your computer and use it in GitHub Desktop.
Save svanas/249302dd1300e325a1ac82e713469e55 to your computer and use it in GitHub Desktop.
Hello World Smart Contract
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
contract HelloWorld {
function myFirstHelloWorld() public pure returns (string memory) {
return 'Hello World!';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment