Z tym się zgodzę, bo w html'u kod jest podobnie wstawiany.
<!-- Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file. -->
<html>
<head>
<title>Hi Dart</title>
</head>
<body>
<h2 id="status">dart is not running</h2>
<script type="application/dart" src="hi.dart"></script>
</body>
</html>
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#library('hi');
#import('dart:html');
main() {
document.query('#status').innerHTML = 'Hi, Dart';
}