#include <iostream>
using namespace std;
using namespace string;
int main() {
. . . . cout << "Welcome to my Carrd!" << endl;
. . . . . . . . /* information */
. . . . string username = "effSquared";
. . . . float birthday = 11.01;
. . . . string nationality = "Filipino";
. . . . . . . . /* interests */
. . . . string interests;
. . . . switch (interests) {
. . . . . . . . case "art":
. . . . . . . . . . . . string artTypes[3] = {"anthropomorphic characters", "drawing", "scenes"};
. . . . . . . . . . . . artTypes[0] = "furries";
. . . . . . . . . . . . break;
. . . . . . . . case "music":
. . . . . . . . . . . . string musicTypes[4] = {"classical", "metal", "indie", "lofi"};
. . . . . . . . . . . . musicTypes[0] = "late romantic era classical";
. . . . . . . . . . . . musicTypes[1] = "thrash metal, heavy metal";
. . . . . . . . . . . . break;
. . . . . . . . case "science":
. . . . . . . . . . . . string acadTypes[3] = {"physics", "chemistry", "computers"};
. . . . . . . . . . . . break;
. . . . }
. . . . . . . . /* socials */
. . . . string kofi = "https://ko-fi.com/effsquared";
. . . . if (money > 0) {
. . . . . . . . cout << "thanks for giving me money :3" << endl;
. . . . } else {
. . . . . . . . cout << "gimme moneyz lmao" << endl;
. . . . }
. . . . string soundCloud = "https://soundcloud.com/eff_squared";
. . . . string instagram = "https://www.instagram.com/forbiddenfursona/"
. . . . // i barely post anything here anymore, i just treat it like my personal profile.
. . . . string twitter = "https://twitter.com/effSquared_";
. . . . string youtube = "https://www.youtube.com/channel/UCSvINrT5tOk2el35PsJhgsQ";
. . . . string discord = "@effsquared";
. . . .
. . . . return 0;
}