package tests { public class TestStrings { public function run():* { trace("hello"); trace("quotes:\"hello!\""); trace("backslash: \\ "); trace("single quotes: \'hello!\'"); trace("new line \r\n hello!"); } } }