Facebook
From Wet Guinea Pig, 2 Years ago, written in Plain Text.
This paste is a reply to Untitled from XRP DEV - go back
Embed
Viewing differences between Untitled and Re: Untitled
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0;

contract SimpleStorage {
    
    string name;
    
    
    
    function set(string memory x) public {
        name = x;
    }
    
    function get() public view returns (string memory) {
        return name;
    }
    
}