Content pfp
Content
@
0 reply
0 recast
2 reactions

Lakshitha Dananjaya pfp
Lakshitha Dananjaya
@dananjaye
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract HelloWorld { // Function to return the string "Hello, World!" function sayHello() public pure returns (string memory) { return "Hello, World!"; } }
43 replies
14 recasts
110 reactions

Bl1zz2 pfp
Bl1zz2
@bl1zz2
A simple Solidity contract to demonstrate a "Hello, World!" message. This contract uses the `pure` function modifier, which means it doesn't modify the contract's state and can only be called internally.
0 reply
0 recast
0 reaction