blob: d0e2f9260e2a68a9f321fb8717e4a999d19b2e20 [file] [log] [blame]
James Kuszmaulcf324122023-01-14 14:07:17 -08001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#include <fmt/core.h>
6#include <wpi/SmallString.h>
7
8int main() {
9 wpi::SmallString<128> v1("Hello");
10 fmt::print("{}\n", v1.str());
11}