Creating cross-platform NFTs with interoperable attributes
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Test {
string public message = "Hello, NFT World!";
function getMessage() public view returns (string memory) {
return message;
}
}
Learned to use github
None