mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-02 16:33:30 +02:00
10 lines
118 B
Rust
10 lines
118 B
Rust
fn main() {
|
|
println!("Output from `main` function");
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn passes() {}
|
|
}
|