(String[] args)
| 62 | } |
| 63 | |
| 64 | public static void main(String[] args) { |
| 65 | int width = 8 * 4; |
| 66 | int height = 15; |
| 67 | byte[] screen = new byte[width * height / 8]; |
| 68 | //screen[1] = 13; |
| 69 | |
| 70 | drawLine(screen, width, 8, 10, 2); |
| 71 | |
| 72 | printScreen(screen, width); |
| 73 | } |
| 74 | |
| 75 | } |
nothing calls this directly
no test coverage detected