874710bdf3
Change-Id: I5c87f431bae49471908a96fbbfe8b1f4d3098c6b Reviewed-on: https://dart-review.googlesource.com/c/81822 Commit-Queue: Peter von der Ahé <ahe@google.com> Auto-Submit: Peter von der Ahé <ahe@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
18 lines
526 B
Plaintext
18 lines
526 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static field core::String color = "brown";
|
|
static field core::String thing = "lazy dog";
|
|
static field core::String phrase = "The quick ${self::color} fox
|
|
jumped over the ${self::thing}.
|
|
";
|
|
static field core::String adjacent = "${self::color}${self::color}${self::color}";
|
|
static field core::String linebreaks = "${self::color}
|
|
${self::color}
|
|
${self::color}";
|
|
static field core::String other = "${self::color}
|
|
is
|
|
${self::color}";
|
|
static method main() → dynamic {}
|