From bd203f090bf671424af940c76da521b726fe4fae Mon Sep 17 00:00:00 2001 From: Paul Kuruvilla Date: Fri, 11 Feb 2022 01:45:32 +0000 Subject: [PATCH] Syncing with codecrafters-io/languages Created by https://github.com/codecrafters-io/languages --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();