(String[] args)
| 40 | } |
| 41 | |
| 42 | public static void main(String[] args) throws Exception { |
| 43 | while (true) { |
| 44 | long[] fib = fibUpToLongMax(); |
| 45 | int randIndex = random.nextInt(fib.length); |
| 46 | if (randIndex % 31 == -1) { |
| 47 | System.out.print(fib[randIndex]); |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | } |
nothing calls this directly
no test coverage detected