One thing I learned about: "Hello, World!" in Solidity
contract ExampleContract {
function helloWorld(string memory name)
public
pure
returns (string memory) {
return string.concat("Hello, ", name, "!");
}
}
🔽🛠️Resources🔽
- Development Environment: Remix Solidity: https://www.rareskills.io/learn-solidity/remix-solidity
Top comments (0)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.