mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 04:16:09 +00:00
16 lines
237 B
ActionScript
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!");
|
|
}
|
|
}
|
|
}
|