Remove wpiutil and update to the new build system (#210)

This commit is contained in:
Thad House
2017-08-03 14:14:40 -07:00
committed by Peter Johnson
parent f43675e2bd
commit 5df7463663
168 changed files with 670 additions and 16084 deletions

View File

@@ -0,0 +1,9 @@
#include "ntcore.h"
#include "nt_Value.h"
#include <iostream>
int main() {
nt::SetEntryValue("MyValue", nt::Value::MakeString("Hello World"));
std::cout << nt::GetEntryValue("MyValue")->GetString() << std::endl;
}