# DriveBy Ever needed a counter to see how many times a line of code is passed? Here you go. ## Examples Run without arguments to get basic debug information: ```rust pass!(); // Stderr: [][] ``` You can pass a literal to have it printed: ```rust // Stderr: [][] Special message pass!("Special message"); // Stderr: [][] a pass!('a'); // Stderr: [][] 5999999 pass(5999999) ``` You can pass a variable with the `Display` trait too: ```rust let hw = String::from("Hello world"); let num = 5; // Stderr: [][] Hello world pass!(hw); // Stderr: [][] 5 pass!(num); ```