Skip to content
View ZyrxusMe's full-sized avatar
🍪
🍪
  • Turkey
  • 04:49 (UTC +03:00)

Organizations

@UpTime-Bot
Block or Report

Block or report ZyrxusMe

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ZyrxusMe/README.md
#include <iostream>
#include <map>
#include <string>

std::map<std::string, std::string> wizly(const std::string& lang) {
    std::map<std::string, std::string> response;

    if (lang.empty()) {
        response["msg"] = "Please specify a language.";
    } else if (lang == "en") {
        response = {{"code", "200"}, {"title", "Weasley"}, {"desc", "He's a maniac who messes with the code like crazy"}};
    } else if (lang == "tr") {
        response = {{"code", "200"}, {"title", "Weasley"}, {"desc", "Kodlarla deli gibi uğraşan bir manyak"}};
    } else {
        response["msg"] = "Please specify a correct language";
    }

    return response;
}

int main() {
    std::string lang;
    std::cout << "Enter language (en or tr): ";
    std::cin >> lang;

    std::map<std::string, std::string> result = wizly(lang);

    for (const auto& pair : result) {
        std::cout << pair.first << ": " << pair.second << std::endl;
    }

    return 0;
}




Pinned Loading

  1. deprem-api-python deprem-api-python Public

    Bu proje, Türkiye'deki deprem verilerini almak için kullanılan bir API sunmaktadır. API, Boğaziçi Üniversitesi Kandilli Rasathanesi'nin veritabanından canlı deprem verilerini çekerek kullanıcılara …

    Python 1

  2. Discord-Dogruluk-Cesaretlik Discord-Dogruluk-Cesaretlik Public

    Doğruluk Cesaretlik Botu | Discord.JS V14 sürümü ile yapılmıştır

    JavaScript 2

  3. discord-bot-list-v14 discord-bot-list-v14 Public

    Discord Bot List sunucularınız için bot list altyapısı. (Sunucu sayısı vb. bilgileri çekebilirsiniz.)

    JavaScript 2