Files
allwpilib/simulation/halsim_print/src/dev/native/cpp/main.cpp

17 lines
643 B
C++
Raw Normal View History

/*----------------------------------------------------------------------------*/
2018-04-29 13:29:07 -07:00
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
2018-04-29 13:29:07 -07:00
#include <chrono>
#include <thread>
#include <hal/HAL.h>
2018-04-29 13:29:07 -07:00
int main() {
HAL_Initialize(500, 0);
std::this_thread::sleep_for(std::chrono::seconds(2));
}