rust/src/main.rs
Tipragot 06d3ef29a5
All checks were successful
Rust Checks / checks (push) Successful in 5s
First commit
2023-11-25 18:26:53 +01:00

6 lines
112 B
Rust

//! A simple program that prints "Hello, world!" to the terminal.
fn main() {
println!("Hello, world!");
}