mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
[wpinet] Move network portions of wpiutil into new wpinet library (#4077)
This commit is contained in:
11
wpinet/src/dev/native/cpp/main.cpp
Normal file
11
wpinet/src/dev/native/cpp/main.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
// 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.
|
||||
|
||||
#include <fmt/core.h>
|
||||
#include <wpi/SmallString.h>
|
||||
|
||||
int main() {
|
||||
wpi::SmallString<128> v1("Hello");
|
||||
fmt::print("{}\n", v1.str());
|
||||
}
|
||||
Reference in New Issue
Block a user