Run ❯
Get your
own Java
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
public class Main { public static void main(String[] args) { int myAge = 25; int votingAge = 18; System.out.println(myAge >= votingAge); // returns true (25 year olds are allowed to vote!) } }
true