├── .gitignore ├── LICENSE ├── Makefile ├── README ├── TODO ├── base.rkt ├── class.rkt ├── datalog.rkt ├── default-in.rkt ├── exp ├── unit-test.rkt └── unit.rkt ├── info.rkt ├── layout.rkt ├── main.rkt ├── module.rkt ├── private └── required-helper.rkt ├── racket.rkt ├── scribblings ├── info.rkt ├── racket2.scrbl └── remix.scrbl ├── static-interface.rkt ├── stx.rkt ├── stx ├── raw.rkt └── singleton-struct.rkt ├── test.rkt ├── tests ├── 2-reader.rkt ├── 2-require-star-d.rkt ├── 2-required-server.rkt ├── 2-required.rkt ├── class.rkt ├── expand-from.rkt ├── expand-to.rkt ├── layout.rkt ├── module.rkt ├── racket │ └── remixd.rkt ├── static-interface.rkt ├── stx.rkt └── theory.rkt └── theory.rkt /.gitignore: -------------------------------------------------------------------------------- 1 | compiled/ 2 | doc/ 3 | *~ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | remix - a revised version of Racket 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/TODO -------------------------------------------------------------------------------- /base.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/base.rkt -------------------------------------------------------------------------------- /class.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/class.rkt -------------------------------------------------------------------------------- /datalog.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/datalog.rkt -------------------------------------------------------------------------------- /default-in.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/default-in.rkt -------------------------------------------------------------------------------- /exp/unit-test.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/exp/unit-test.rkt -------------------------------------------------------------------------------- /exp/unit.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/exp/unit.rkt -------------------------------------------------------------------------------- /info.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/info.rkt -------------------------------------------------------------------------------- /layout.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/layout.rkt -------------------------------------------------------------------------------- /main.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/main.rkt -------------------------------------------------------------------------------- /module.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/module.rkt -------------------------------------------------------------------------------- /private/required-helper.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/private/required-helper.rkt -------------------------------------------------------------------------------- /racket.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/racket.rkt -------------------------------------------------------------------------------- /scribblings/info.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/scribblings/info.rkt -------------------------------------------------------------------------------- /scribblings/racket2.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/scribblings/racket2.scrbl -------------------------------------------------------------------------------- /scribblings/remix.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/scribblings/remix.scrbl -------------------------------------------------------------------------------- /static-interface.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/static-interface.rkt -------------------------------------------------------------------------------- /stx.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/stx.rkt -------------------------------------------------------------------------------- /stx/raw.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/stx/raw.rkt -------------------------------------------------------------------------------- /stx/singleton-struct.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/stx/singleton-struct.rkt -------------------------------------------------------------------------------- /test.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/test.rkt -------------------------------------------------------------------------------- /tests/2-reader.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/2-reader.rkt -------------------------------------------------------------------------------- /tests/2-require-star-d.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/2-require-star-d.rkt -------------------------------------------------------------------------------- /tests/2-required-server.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/2-required-server.rkt -------------------------------------------------------------------------------- /tests/2-required.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/2-required.rkt -------------------------------------------------------------------------------- /tests/class.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/class.rkt -------------------------------------------------------------------------------- /tests/expand-from.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/expand-from.rkt -------------------------------------------------------------------------------- /tests/expand-to.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/expand-to.rkt -------------------------------------------------------------------------------- /tests/layout.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/layout.rkt -------------------------------------------------------------------------------- /tests/module.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/module.rkt -------------------------------------------------------------------------------- /tests/racket/remixd.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/racket/remixd.rkt -------------------------------------------------------------------------------- /tests/static-interface.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/static-interface.rkt -------------------------------------------------------------------------------- /tests/stx.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/stx.rkt -------------------------------------------------------------------------------- /tests/theory.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/tests/theory.rkt -------------------------------------------------------------------------------- /theory.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeapostrophe/remix/HEAD/theory.rkt --------------------------------------------------------------------------------