mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-03 06:44:17 +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;
|
|
}
|
|
}
|
|
}
|