Solidity
Language
memory
keyword means it's a temporary variable.pure
means read only.function hello() pure public returns(string memory) {
return "hello world";
}
memory
keyword means it's a temporary variable.pure
means read only.
function hello() pure public returns(string memory) {
return "hello world";
}