Initial work on calculator program.

This commit is contained in:
2026-06-28 11:02:36 -04:00
parent c2e6810a9e
commit 912e12399d
7 changed files with 83 additions and 0 deletions

2
calculator/Makefile Normal file
View File

@@ -0,0 +1,2 @@
calc: *.cpp *.h
clang++ -std=c++20 -O0 -g -o calc *.cpp