Skip to content

Instantly share code, notes, and snippets.

@MuhammadSulaiman001
Created October 28, 2024 04:11
Show Gist options
  • Save MuhammadSulaiman001/fe5208dc2ae98824d7a82a5edd5f2eec to your computer and use it in GitHub Desktop.
Save MuhammadSulaiman001/fe5208dc2ae98824d7a82a5edd5f2eec to your computer and use it in GitHub Desktop.
#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