Skip to content

Instantly share code, notes, and snippets.

View DavidMaor32's full-sized avatar
:shipit:
:(){ : | :& };:

David Maor DavidMaor32

:shipit:
:(){ : | :& };:
View GitHub Profile
@DavidMaor32
DavidMaor32 / Funny.java
Created August 4, 2024 04:14
java is funny with numbers hehe
public class Funny{
public static void main(){
Integer a1 = 9, a2 = 9;
System.out.println(a1 == a2);
Integer b1 = 128, b2 = 128;
System.out.println(b1 == b2);
}
}