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.
|
2017-06-30 18:58:58 -07:00
|
|
|
|
2026-03-13 15:53:24 -07:00
|
|
|
#include "wpi/hal/HALBase.h"
|
2025-11-07 19:57:55 -05:00
|
|
|
#include "wpi/util/print.hpp"
|
2017-06-30 18:58:58 -07:00
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
int main() {
|
2025-11-07 20:00:05 -05:00
|
|
|
wpi::util::print("Hello World\n");
|
|
|
|
|
wpi::util::print("{}\n", static_cast<int32_t>(HAL_GetRuntimeType()));
|
2017-06-30 18:58:58 -07:00
|
|
|
}
|