Created
October 28, 2024 04:11
-
-
Save MuhammadSulaiman001/fe5208dc2ae98824d7a82a5edd5f2eec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <spdlog/spdlog.h> | |
#include <glm/vec3.hpp> | |
int main() | |
{ | |
std::cout << "Hello World!\n"; | |
spdlog::info("Welcome to spdlog!"); | |
auto vector3 = glm::vec3(.5, 1, 1); | |
std::cout << "vector3.x = " << vector3.x; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment