blob: 0bbaaf4a0295096ac255da6a31a0e8dd97af9921 (
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
28
29
30
31
32
33
34
35
36
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>scheme</herd>
<longdescription lang="en">
Grow your Program
Racket's interactive mode encourages experimentation, and quick scripts easily compose into larger systems. Small scripts and large systems both benefit from native-code JIT compilation. When a system gets too big to keep in your head, you can add static types.
Grow your Language
Extend Racket whenever you need to. Mold it to better suit your tasks without sacrificing interoperability with existing libraries and without having to modify the tool chain. When less is more, you can remove parts of a language or start over and build a new one.
Grow your Skills
Whether you're just starting out, want to know more about programming language applications or models, looking to expand your horizons, or ready to dive into research, Racket can help you become a better programmer and system builder.
</longdescription>
<use>
<flag name='backtrace'>
Support GC backtrace dumps
</flag>
<flag name='futures'>
Support for hardware parallelism for limited computations
</flag>
<flag name='jit'>
Enable Just-in-Time compiler
</flag>
<flag name='places'>
Support for parallel tasks that are effectively separate instances of the Racket virtual machine
</flag>
<flag name='plot'>
Enable plot libraries
</flag>
<flag name='threads'>
Support for green threads
</flag>
</use>
</pkgmetadata>
|