aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2014-02-07 15:02:40 +0100
committerodersky <odersky@gmail.com>2014-02-07 15:02:40 +0100
commitfc84e992977ecbc0d2da0e70bd61fcc776220b5c (patch)
treeab6105b26b5439f3800720cd7fdcab2625676bbb
parent8f2cb142bb4914a4e009042a24fd244429d845e7 (diff)
downloaddotty-fc84e992977ecbc0d2da0e70bd61fcc776220b5c.tar.gz
dotty-fc84e992977ecbc0d2da0e70bd61fcc776220b5c.tar.bz2
dotty-fc84e992977ecbc0d2da0e70bd61fcc776220b5c.zip
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index a2fc61587..4e983cfb2 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
dotty
=====
-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.
+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](http://www.cs.uwm.edu/~boyland/fool2012/papers/fool2012_submission_3.pdf), a calculus for dependent object types.
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.