Sign in
fuchsia
/
fargo
/
56e8b991fd344ac2a0df518b8f0f30f3a1028330
/
.
/
fargo-test
/
src
/
lib.rs
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!"
);
}