blob: cfce2fda55c5ac4341d1a33692d12bf9ed3328b5 [file] [log] [blame]
/// Function that does what it says
/// ```
/// use fargo_test::print_hello_world;
///
/// for _ in 0..6 {
/// print_hello_world();
/// }
/// ```
pub fn print_hello_world() {
println!("Hello, world!");
}