mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +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!
|
|
}
|
|
|
|
}
|