comparison dmd/readme.txt @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1
2 The D Programming Language
3 Compiler Front End Source
4 Copyright (c) 1999-2002, by Digital Mars
5 www.digitalmars.com
6 All Rights Reserved
7
8
9 This is the source code to the front end Digital Mars D compiler.
10 It covers the lexical analysis, parsing, and semantic analysis
11 of the D Programming Language defined in the documents at
12 www.digitalmars.com/d/
13
14 The optimizer, code generator, and object file generator are not part
15 of this source, hence the source does not currently constitute a complete,
16 compilable program. However, many people have expressed a strong interested
17 in producing a D compiler with the GNU compiler sources. This release should
18 enable that.
19
20 These sources are free, they are redistributable and modifiable
21 under the terms of the GNU General Public License (attached as gpl.txt),
22 or the Artistic License (attached as artistic.txt).
23
24 It does not apply to anything else distributed by Digital Mars,
25 including D compiler executables.
26
27 -Walter Bright