Skip to content

Instantly share code, notes, and snippets.

@e-tverdokhleb
Created November 13, 2015 06:03
Show Gist options
  • Save e-tverdokhleb/891e4064d1c7e3db495c to your computer and use it in GitHub Desktop.
Save e-tverdokhleb/891e4064d1c7e3db495c to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
System.out.println(oldEnogh(2123));
}
static boolean oldEnogh(int age) {
if (age >= 21) {
return true;
} else
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment