public
Description: Scheme in as little Ruby and as much Scheme as possible. Supports macros, continuations, tail recursion and lazy evaluation.
Homepage:
Clone URL: git://github.com/jcoglan/heist.git
heist / Manifest.txt
100644 64 lines (62 sloc) 1.612 kb
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
History.txt
Manifest.txt
Rakefile
README.txt
bin/heist
lib/bin_spec.rb
lib/heist.rb
lib/repl.rb
lib/trie.rb
lib/builtin/library.scm
lib/builtin/library.rb
lib/builtin/primitives.rb
lib/builtin/syntax.scm
lib/parser/nodes.rb
lib/parser/ruby.rb
lib/parser/scheme.rb
lib/parser/scheme.tt
lib/runtime/callable/continuation.rb
lib/runtime/callable/function.rb
lib/runtime/callable/syntax.rb
lib/runtime/callable/macro.rb
lib/runtime/callable/macro/matches.rb
lib/runtime/callable/macro/tree.rb
lib/runtime/callable/macro/expansion.rb
lib/runtime/data/character.rb
lib/runtime/data/cons.rb
lib/runtime/data/expression.rb
lib/runtime/data/identifier.rb
lib/runtime/data/vector.rb
lib/runtime/binding.rb
lib/runtime/frame.rb
lib/runtime/runtime.rb
lib/runtime/scope.rb
lib/runtime/stack.rb
lib/runtime/stackless.rb
lib/stdlib/benchmark.scm
lib/stdlib/birdhouse.scm
test/helpers/lib.scm
test/helpers/macro-helpers.scm
test/helpers/vars.scm
test/scheme_tests/arithmetic.scm
test/scheme_tests/benchmarks.scm
test/scheme_tests/booleans.scm
test/scheme_tests/closures.scm
test/scheme_tests/conditionals.scm
test/scheme_tests/continuations.scm
test/scheme_tests/define_functions.scm
test/scheme_tests/define_values.scm
test/scheme_tests/delay.scm
test/scheme_tests/equivalence.scm
test/scheme_tests/file_loading.scm
test/scheme_tests/functional.scm
test/scheme_tests/hygienic.scm
test/scheme_tests/let.scm
test/scheme_tests/lists.scm
test/scheme_tests/macros.scm
test/scheme_tests/numbers.scm
test/scheme_tests/strings.scm
test/scheme_tests/unhygienic.scm
test/scheme_tests/vectors.scm
test/plt-macros.txt
test/test_heist.rb