// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/// @title About Me
/// @author Kevin Lin
/// @notice This contract describes a bit about me
contract Kevin {
string storage Code = [ "Javascript", "Solidity", "HTML5", "CSS3",
"PostgreSQL", "C#", "Typescript", "Python" ];
string storage Tools = [ "React", "Node", "Mocha", "Chai", "Foundry",
"Hardhat", "Ethers", "Web3", "Material UI", "Bootstrap" ];
/// @notice Retrieve my development setup
/// @return An array of environment IDEs
function WhatEnvironmentDoIUse() public returns (string[] memory Env) {
string[] memory Env = [];
Env.push("Visual Studio Code");
Env.push("Visual Studio 2022");
}
}
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.