Compare commits

..

1 Commits

Author SHA1 Message Date
dxrknesss 748620b307 add comment to main 2026-01-17 16:40:09 +02:00
+2 -1
View File
@@ -2,10 +2,11 @@
fn main() { fn main() {
print("Hello, world!"); print("Hello, world!");
print("Goodbye, world!"); print("Goodbye, world!");
// some documentation comment // some (not really) documentation comment
} }
// a function that prints the msg // a function that prints the msg
fn print(m: &str) { fn print(m: &str) {
println!("{m}") println!("{m}")
// hello ?
} }