Add a java version of the dev app. (#218)

This commit is contained in:
Thad House
2017-08-13 08:02:29 -07:00
committed by Peter Johnson
parent ea028a3822
commit d9c754c30f
2 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package edu.wpi.first.ntcore;
import edu.wpi.first.wpilibj.networktables.NetworkTablesJNI;
import edu.wpi.first.wpiutil.RuntimeDetector;
public class DevMain {
public static void main(String[] args) {
System.out.println("Hello World!");
System.out.println(RuntimeDetector.getPlatformPath());
NetworkTablesJNI.flush();
}
}