mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
18 lines
240 B
Java
18 lines
240 B
Java
package $package;
|
|
|
|
/**
|
|
* Simplest possible robot program
|
|
*
|
|
* @author Team $team-number
|
|
*/
|
|
public class Robot {
|
|
|
|
/**
|
|
* @param args Input....
|
|
*/
|
|
public static void main(String[] args) {
|
|
// Do stuff here!
|
|
}
|
|
|
|
}
|