JavaCompilerCore/resources/bytecode/javFiles/Op1.jav
Daniel Holle c84befae51
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m41s
Add Negation operator (fixes #304)
2024-03-25 17:05:20 +01:00

9 lines
107 B
Java

import java.lang.Boolean;
public class Op1 {
public m() {
var b = false;
var c = !b;
return c;
}
}