aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2014-02-07 11:55:49 +0100
committerodersky <odersky@gmail.com>2014-02-07 11:55:49 +0100
commit8f2cb142bb4914a4e009042a24fd244429d845e7 (patch)
treedfc3b0bc0845d1608fb626948905b1c5cfb9c9d4 /README.md
parent4697dcb614bdab28985aff991566d69c3d4e9ecd (diff)
downloaddotty-8f2cb142bb4914a4e009042a24fd244429d845e7.tar.gz
dotty-8f2cb142bb4914a4e009042a24fd244429d845e7.tar.bz2
dotty-8f2cb142bb4914a4e009042a24fd244429d845e7.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 74c303ec1..a2fc61587 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,10 @@
dotty
=====
-The experimental compiler for a Scala dialect based on DOT.
+Dotty is a platform to try out new language concepts and compiler technologies for Scala. The focus is mainly on simplification. We remove extraneous syntax (e.g. no XML literals), and try to boil down Scala's types into a smaller set of more fundamental constructors. The theory behind these constructors is researched in DOT, a calculus for dependent object types.
-To get started have a look at https://github.com/lampepfl/dotty/wiki/Getting-Started.
+The dotty compiler is largely a new design. It takes a more functional approach than current scalac, paired with aggressive caching to achieve good performance. At present, only the frontend (parser and type-checker) exists; the transformation and code generation phases remain to be written.
+
+We expect that, over time, some of the new technologies explored in this project will find their way into future versions of Scala. At present it is too early to say which ones and when.
+
+If you want to try it out, to get started have a look at https://github.com/lampepfl/dotty/wiki/Getting-Started.