Skip to content

Instantly share code, notes, and snippets.

#include "SDL3/SDL_error.h"
#include "SDL3/SDL_render.h"
#include <SDL3/SDL.h>
#include <SDL3_ttf/SDL_ttf.h>
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv) {
SDL_Init(SDL_INIT_VIDEO);
#include <raylib.h>
#include <raymath.h>
Vector2 VEC2(float x, float y) {
Vector2 result = {x, y};
return result;
}
int main(int argc, char **argv) {
SetConfigFlags(FLAG_WINDOW_RESIZABLE | FLAG_WINDOW_HIGHDPI);
@ferennag
ferennag / init.el
Created March 12, 2025 22:18
Meow not working...
(load-theme 'deeper-blue)
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)
(setq package-selected-packages
'(use-package))