Skip to content

Instantly share code, notes, and snippets.

View materusPL's full-sized avatar
🇵🇱

materus materusPL

🇵🇱
View GitHub Profile
@materusPL
materusPL / brainfck.cpp
Created July 3, 2024 12:42
Simple brainf*ck interpreter.
#include <iostream>
#include <limits>
#include <deque>
#include <vector>
#include <algorithm>
#include <fstream>
#define INIT_SIZE 10