mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
10 lines
224 B
C++
10 lines
224 B
C++
|
|
#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;
|
||
|
|
}
|