」 feat(ex01): RPN is working :D

This commit is contained in:
2025-08-27 15:58:23 +02:00
parent b9919ed1e6
commit 1458548d67
5 changed files with 145 additions and 0 deletions

9
ex01/RPN.hpp Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <exception>
#include <iostream>
#include <sstream>
#include <string>
#include <stack>
void rpn(char *);