Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

//SPDX-License-Identifier:MIT

pragma solidity >=0.7.0 <=0.8.0;


contract Test1{
string public GreetUser = "hello Class";

function setGreetUser(string memory _GreetUser)public{


GreetUser = _GreetUser;
}
}

You might also like