- 🔗 I’m currently improving my DevOps skills
- 👐 I’m looking to contribute to a new project
- 🥅 2024 Goals: Learn blockchain.
- ⚡ Fun fact: I use NixOS btw :)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
contract Profile {
string public name = "Numan Burak Fidan";
string public pronouns = "He | Him";
string public currentFocus = "Backend Development";
string[] internal skills;
function getSkills() public returns (string[] memory) {
skills = [
"Golang",
"Javascript/Typescript",
"Python",
];
return skills;
}
function fun() public view returns (string memory) {
return
"Two bytes meet. The first byte asks, 'Are you ill?' The second byte replies, 'No, just feeling a bit off.'";
}
}