// Copyright 2019 the Kurbo Authors // SPDX-License-Identifier: Apache-2.0 OR MIT //! Example of circle #[cfg(feature = "std")] fn main() { use kurbo::{Circle, Shape}; let circle = Circle::new((400.0, 400.0), 380.0); println!(""); println!(""); println!("
"); println!(""); println!(""); println!(""); } #[cfg(not(feature = "std"))] fn main() { println!("This example requires the standard library"); }