mirror of
https://github.com/github/codeql.git
synced 2026-04-12 18:44:00 +02:00
4 lines
68 B
Java
4 lines
68 B
Java
public boolean isEven(int x) {
|
|
return x % 2 == 0; //Does work
|
|
}
|