blob: 36fd7ca4f06882ccddc790d34a9d32df33eb5469 [file] [log] [blame]
// 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.
void main() {
var hello = 'Hello';
var world = 'world';
var s = 0;
s = world;
hello = 'Greetings';
print("$hello, $world!");
}