Guest User

Untitled

a guest
Dec 23rd, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. // Copyright (c) FIRST and other WPILib contributors.
  2. // Open Source Software; you can modify and/or share it under the terms of
  3. // the WPILib BSD license file in the root directory of this project.
  4.  
  5. package frc.robot;
  6.  
  7. import edu.wpi.first.wpilibj.RobotBase;
  8.  
  9. /**
  10. * Do NOT add any static variables to this class, or any initialization at all. Unless you know what
  11. * you are doing, do not modify this file except to change the parameter class to the startRobot
  12. * call.
  13. */
  14. public final class Main {
  15. private Main() {}
  16.  
  17. /**
  18. * Main initialization function. Do not perform any initialization here.
  19. *
  20. * <p>If you change your main robot class, change the parameter type.
  21. */
  22. public static void main(String... args) {
  23. RobotBase.startRobot(Robot::new);
  24. }
  25. }
  26.  
Add Comment
Please, Sign In to add comment