1 line
259 B
Solidity
1 line
259 B
Solidity
pragma solidity ^0.8.0; contract Greeter { string public greeting; constructor() { greeting = 'Hello'; } function setGreeting(string memory _greeting) public { greeting = _greeting; } function greet() public view returns (string memory) { return greeting; } } |