Skip to content

Instantly share code, notes, and snippets.

@blvp
Last active October 12, 2015 12:10
Show Gist options
  • Save blvp/0eab241213b117780dcd to your computer and use it in GitHub Desktop.
Save blvp/0eab241213b117780dcd to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String... args) {
long someUnbelievableLongValue = 1_000_000_000L;
System.out.println(
"My Long value is 1000000000" +
(1000000000L == someUnbelievableLongValue? "==" : "!=") +
"1_000_000_000"
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment