| author | |
| committer | |
| log | cda10f0577fcf5794f1f583ff159311a1b186082 |
| tree | e36ab8b9df6e0b3ea3b4c578a67deea1d45e8e92 |
| parent | c7f4cadbc77a6b85fb568e9ae8dcf210009f6f03 |
2 files changed, 5 insertions(+), 5 deletions(-)
README.md+4| ... | ... | @@ -41,9 +41,13 @@ readable, safe, optimal, and concise code to solve any computing problem. |
| 41 | 41 | ## Roadmap |
| 42 | 42 | |
| 43 | 43 | * Debug/Release mode. |
| 44 | * don't hardcode the link against libc | |
| 44 | 45 | * C style comments. |
| 45 | 46 | * Unit tests. |
| 46 | 47 | * Simple .so library |
| 48 | * Multiple files | |
| 49 | * figure out integers | |
| 50 | * implement a simple game using SDL2 | |
| 47 | 51 | * How should the Widget use case be solved? In Genesis I'm using C++ and inheritance. |
| 48 | 52 | |
| 49 | 53 | ### Primitive Numeric Types: |
src/tokenizer.cpp+1-5| ... | ... | @@ -14,11 +14,7 @@ |
| 14 | 14 | |
| 15 | 15 | #define WHITESPACE \ |
| 16 | 16 | ' ': \ |
| 17 | case '\t': \ | |
| 18 | case '\n': \ | |
| 19 | case '\f': \ | |
| 20 | case '\r': \ | |
| 21 | case 0xb | |
| 17 | case '\n' | |
| 22 | 18 | |
| 23 | 19 | #define DIGIT \ |
| 24 | 20 | '0': \ |