This repository has been archived on 2025-11-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
rustex/exercises/05_ticket_v2/00_intro/src/lib.rs

15 lines
263 B
Rust

fn intro() -> &'static str {
// TODO: fix me 👇
"I'm ready to refine the `Ticket` type!"
}
#[cfg(test)]
mod tests {
use crate::intro;
#[test]
fn test_intro() {
assert_eq!(intro(), "I'm ready to refine the `Ticket` type!");
}
}