mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +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;
|
||
|
|
}
|