A simple raylib-based implementation of Pong.
Instructions assume you are (1) using Linux or macOS and (2) that you have gcc (C99), zig, and git installed. (Theoretically, the command below will also work with Windows with minor changes.)
git clone clone https://github.com/bi3mer/raylib-pong.git
cd raylib-pong
mkdir deps
cd deps
git clone --depth 1 https://github.com/raysan5/raylib.git
rm -rf raylib/.git
cd ..
zig build runzig build -Doptimize=ReleaseFast # mac build
zig build -Dtarget=x86_64-windows -Doptimize=ReleaseFast # Windows Build