Sha256: e93b76b22d25420db5eb2e2e80b88ff41e1ce97babff79422583b85398879235
Contents?: true
Size: 396 Bytes
Versions: 17
Compression:
Stored size: 396 Bytes
Contents
public class InfiniteLoop { /* * This will cause the program to hang... * * Taken from: * http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/ */ public static void main(String[] args) { double d = Double.parseDouble("2.2250738585072012e-308"); // unreachable code System.out.println("Value: " + d); } }
Version data entries
17 entries across 17 versions & 1 rubygems