Skip to content
View stepanzorin's full-sized avatar
🖥️
Working from home
🖥️
Working from home

Block or report stepanzorin

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
stepanzorin/README.md

Telegram

#include <array>
#include <cstdlib>
#include <string_view>

#include <fmt/core.h>

namespace github::stepanzorin {

class SoftwareEngineer final {
public:
    void say_hi() const noexcept {
        fmt::print("Thanks for dropping by, hope you find some of my work interesting.");
    }

private:
    const std::string_view name{"Stepan Zorin"};
    const std::uint8_t age{24};
    const bool is_male{true};
    const std::string_view country{"Russia"};

    static const std::size_t count_of_language_spoken{2};
    const std::array<std::string_view, count_of_language_spoken> language_spoken{
        "Russian (native speaker)",
        "English (United States)"};
};

} // namespace github::stepanzorin

using namespace github::stepanzorin;

int main() {
    constexpr SoftwareEngineer me;
    me.say_hi();

    return EXIT_SUCCESS;
}

🔧 Technologies & Tools

C++ Vulkan API CLion CMake Conan Windows MacOS

Popular repositories Loading

  1. stepanzorin stepanzorin Public

  2. conan-center-index conan-center-index Public

    Forked from conan-io/conan-center-index

    Recipes for the ConanCenter repository

    Python

  3. str str Public

  4. arcane arcane Public

    Modern Vulkan API-based game engine on C++23.

    C++