summaryrefslogtreecommitdiff
path: root/README.org
blob: 246940bce4667227a5a762689274e2520607b535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
*** General

This compiler was made following the general guidelines provided in /Writing a C Compiler/ by Nora Sandler.
It is written solely using tools distributed with Guile.

*** Features

It features a large subset of the C language:

- [ ] Unary Operators
- [ ] Binary Operators
- [ ] Logical and Relational Operators
- [ ] Local Variables
- [ ] If Statements and Conditional Expressions
- [ ] Compound Statements
- [ ] Loops
- [ ] Functions
- [ ] File Scope Variable Declarations and Storage-Class Specifiers
- [ ] Long Integers
- [ ] Unsigned Integers
- [ ] Floating Point Numbers
- [ ] Pointers
- [ ] Arrays and Pointer Arithmetic
- [ ] Characters and Strings
- [ ] Dynamic Memory Allocation
- [ ] Structures
- [ ] A Multitude Of Optimizations