├── .gitignore ├── LICENSE ├── README ├── c └── lang │ ├── c.scrbl │ ├── info.rkt │ ├── main.rkt │ ├── read.rkt │ ├── reader.rkt │ └── runtime.rkt ├── info.rkt └── tests └── c └── lang └── order.rkt /.gitignore: -------------------------------------------------------------------------------- 1 | compiled 2 | /doc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | #lang for writing C code 2 | -------------------------------------------------------------------------------- /c/lang/c.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/c/lang/c.scrbl -------------------------------------------------------------------------------- /c/lang/info.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/c/lang/info.rkt -------------------------------------------------------------------------------- /c/lang/main.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/c/lang/main.rkt -------------------------------------------------------------------------------- /c/lang/read.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/c/lang/read.rkt -------------------------------------------------------------------------------- /c/lang/reader.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/c/lang/reader.rkt -------------------------------------------------------------------------------- /c/lang/runtime.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/c/lang/runtime.rkt -------------------------------------------------------------------------------- /info.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/info.rkt -------------------------------------------------------------------------------- /tests/c/lang/order.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/c/HEAD/tests/c/lang/order.rkt --------------------------------------------------------------------------------