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
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
#include <iostream>
|
2017-06-30 18:58:58 -07:00
|
|
|
|
2018-07-20 00:03:45 -07:00
|
|
|
#include "hal/HAL.h"
|
2017-06-30 18:58:58 -07:00
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
int main() {
|
|
|
|
|
std::cout << "Hello World" << std::endl;
|
|
|
|
|
std::cout << HAL_GetRuntimeType() << std::endl;
|
2017-06-30 18:58:58 -07:00
|
|
|
}
|