blob: fcc55b1a4fca2d3d9fad29c4f4698b61cb97f370 [file] [log] [blame]
Austin Schuh812d0d12021-11-04 20:16:48 -07001// 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.
Brian Silverman8fce7482020-01-05 13:18:21 -08004
Austin Schuh812d0d12021-11-04 20:16:48 -07005#include <fmt/core.h>
Brian Silverman8fce7482020-01-05 13:18:21 -08006#include <hal/HALBase.h>
7
8#include "WPILibVersion.h"
9
10int main() {
Austin Schuh812d0d12021-11-04 20:16:48 -070011 fmt::print("Hello World\n");
James Kuszmaulcf324122023-01-14 14:07:17 -080012 fmt::print("{}\n", static_cast<int32_t>(HAL_GetRuntimeType()));
Austin Schuh812d0d12021-11-04 20:16:48 -070013 fmt::print("{}\n", GetWPILibVersion());
Brian Silverman8fce7482020-01-05 13:18:21 -080014}