WarpPI/src/main/java/org/warp/picalculator/KeyboardTest.java

11 lines
261 B
Java
Executable File

package org.warp.picalculator;
import org.warp.picalculator.gui.screens.KeyboardDebugScreen;
public class KeyboardTest {
public static void main(String[] args) throws InterruptedException, Error {
new Main(new KeyboardDebugScreen(), args);
}
}