blob: fb2a4b0bf7c5709609d31a63b4ea6b261450d7bf [file] [log] [blame]
Austin Schuh812d0d12021-11-04 20:16:48 -07001// 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.
Brian Silverman8fce7482020-01-05 13:18:21 -08004
James Kuszmaulb13e13f2023-11-22 20:44:04 -08005#include <fmt/core.h>
6
Austin Schuh812d0d12021-11-04 20:16:48 -07007#include "wpi/SmallString.h"
Brian Silverman8fce7482020-01-05 13:18:21 -08008
9int main() {
Austin Schuh812d0d12021-11-04 20:16:48 -070010 wpi::SmallString<128> v1("Hello");
11 fmt::print("{}\n", v1.str());
Brian Silverman8fce7482020-01-05 13:18:21 -080012}