The Java Program: 4-loopy-puzzlers/puzzle-24/BigDelight.java

  1 class BigDelight {
  2     public static void main(String[] args) {
  3         for (byte b = Byte.MIN_VALUE; b < Byte.MAX_VALUE; b++) {
  4             if (b == 0x90)
  5                 System.out.print("Joy!");
  6         }
  7     }
  8 }