blob: 6af4e00dfa17e80fedf475c619bb948ee1909f9b [file] [log] [blame]
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 {}