Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestStrings.as

16 lines
237 B
ActionScript

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!");
}
}
}