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/03_ticket_v1/00_intro/src/lib.rs
2025-02-24 15:53:03 +05:30

15 lines
281 B
Rust

fn intro() -> &'static str {
// TODO: fix me 👇
"I'm ready to start modelling a software ticket!"
}
#[cfg(test)]
mod tests {
use crate::intro;
#[test]
fn test_intro() {
assert_eq!(intro(), "I'm ready to start modelling a software ticket!");
}
}