blob: 54952b7188ffbd5ce0e2aa4f095381cb37f6e945 [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.
Austin Schuh1e69f942020-11-14 15:06:14 -08004
Austin Schuh812d0d12021-11-04 20:16:48 -07005#include <fmt/core.h>
6#include <wpi/numbers>
Austin Schuh1e69f942020-11-14 15:06:14 -08007
Austin Schuh812d0d12021-11-04 20:16:48 -07008int main() {
9 fmt::print("{}\n", wpi::numbers::pi);
10}