Skip to content

Commit

Permalink
imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Starlight220 committed Apr 4, 2024
1 parent 7d3265f commit 7573b02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion myRobot/src/main/java/frc/robot/MyRobot.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
package frc.robot;

import edu.wpi.first.wpilibj.TimedRobot;
import edu.wpi.first.wpilibj2.command.PrintCommand;


public class MyRobot extends TimedRobot {
/**
Expand All @@ -13,7 +15,7 @@ public class MyRobot extends TimedRobot {
*/
@Override
public void robotInit() {
Command c = new PrintCommand("Hello");
var c = new PrintCommand("Hello");
c.andThen(new PrintCommand("World!"));
c.andThen(new PrintCommand("Failure!"));
}
Expand Down

0 comments on commit 7573b02

Please sign in to comment.