2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2019-08-18 18:00:40 -04:00
|
|
|
|
2021-05-01 15:53:30 +00:00
|
|
|
package edu.wpi.first.math;
|
2019-08-18 18:00:40 -04:00
|
|
|
|
2020-08-06 23:57:39 -07:00
|
|
|
public final class DevMain {
|
2020-12-29 22:45:16 -08:00
|
|
|
/** Main entry point. */
|
2020-08-06 23:57:39 -07:00
|
|
|
public static void main(String[] args) {
|
|
|
|
|
System.out.println("Hello World!");
|
2021-01-01 16:22:00 -08:00
|
|
|
System.out.println(MathUtil.angleModulus(-5.0));
|
2020-08-06 23:57:39 -07:00
|
|
|
}
|
|
|
|
|
|
2020-12-29 22:45:16 -08:00
|
|
|
private DevMain() {}
|
2019-08-18 18:00:40 -04:00
|
|
|
}
|