diff --git a/src/main.rs b/src/main.rs index f59a43c..2f1aee1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,7 @@ // Usage: your_docker.sh run ... fn main() { - println!("Your code goes here!"); + // You can use print statements as follows for debugging, they'll be visible when running tests. + println!("Logs from your program will appear here!"); // Uncomment this block to pass the first stage! // let args: Vec<_> = std::env::args().collect();