blob: a6359953a6fdf0ea4b0ee98e7b58cab0a25570d3 [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.
// @dart = 2.7
void main() {
dynamic hello = 'Hello';
dynamic world = 'world';
dynamic s = 0;
s = world;
hello = 'Greetings';
print("$hello, $world!");
}