Hello World

pragma ^0.8.0;
contract HelloWorld{
  function say() public pure returns(string memory){
    return "hello world, mirror.xyz";
  }
}