main.dart 259 B

12345678
  1. // Copyright (c) 2015, <your name>. All rights reserved. Use of this source code
  2. // is governed by a BSD-style license that can be found in the LICENSE file.
  3. import 'dart:html';
  4. void main() {
  5. querySelector('#output').text = 'Your Dart app is running.';
  6. }