12 lines
142 B
Rust
12 lines
142 B
Rust
fn main() {
|
|
println!("Hello, world!");
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
#[test]
|
|
fn test_something() {
|
|
assert_eq!(1, 1);
|
|
}
|
|
}
|