You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+43-16Lines changed: 43 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
The build process should be relatively straight foreward, thanks to the included CMake instructions.
8
8
I used a Macbook running macOS Catalina 10.15.6 during the development of this interpreter.
9
-
Thus I cannot vouch for any other operating systems but I don't see why it shouldn't work :)
9
+
A github action was used to build on ubuntu 20.04 which you can see below. Windows wasn't tested but should hopefully work as well.
10
10
11
11
```bash
12
12
>cd<repo>
@@ -17,6 +17,8 @@ Thus I cannot vouch for any other operating systems but I don't see why it shoul
17
17
> ./scheme
18
18
```
19
19
20
+
If you'd like to be able to see more debug messages, build the interpreter with the following command instead: `cmake -DCMAKE_BUILD_TYPE=Debug ..`. You can enable or disable individual log message categories in `scheme.cpp`.
21
+
20
22
Please also note that this was my first time writing anything substantial in C++. Weird language, especially when coming from python. Nonetheless, this was quite fun but in equal measures also frustrating. Well worth it though!
0 commit comments