Last week, in Aarhus, Denmark, GOTO 2011 (the international software development conference) kicked off with the announcement of Google’s new programming language Dart a class-based optionally typed programming language for building web applications. Lars Bak and Gilad Bracha made the announcement during their opening keynote address, and they (along with about 20 other Google engineers) answered questions about the new language after the speech. We’ve invited Lars Bark to give us his thoughts on Dart here on the blog. -Editor
By Lars Bak, Software Engineer, Dart Team
Cross-posted on the Chromium Blog
Today we are introducing an early preview of Dart, a class-based optionally typed programming language for building web applications. Dart’s design goals are to:
- Create a structured yet flexible language for web programming.
- Make Dart feel familiar and natural to programmers and thus easy to learn.
- Ensure that Dart delivers high performance on all modern web browsers and environments ranging from small handheld devices to server-side execution.
Dart code can be executed in two different ways: either on a native virtual machine or on top of a JavaScript engine by using a compiler that translates Dart code to JavaScript. This means you can write a web application in Dart and have it compiled and run on any modern browser. The Dart VM is not currently integrated in Chrome but we plan to explore this option.
The language comes with a set of basic libraries and tools for checking, compiling and running Dart code, all of which will evolve further with your participation. We've made the language and preliminary tools available as open source on dartlang.org. Check out the site to give feedback, learn more about Dart, and participate in its development.
We look forward to rapidly evolving Dart into a solid platform for structured web programming.
Lars Bak is a veteran virtual machinist, leaving marks on several software systems: Beta, Self, Strongtalk, Sun's HotSpot and CLDC HI, OOVM Smalltalk, and V8.
View comments