mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
13 lines
125 B
ActionScript
13 lines
125 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestNegate
|
|
{
|
|
public function run():void
|
|
{
|
|
var a:int = 5;
|
|
var b:int = ~a;
|
|
}
|
|
}
|
|
}
|