rust/src/main.rs

14 lines
168 B
Rust
Raw Normal View History

mod tls;
2024-05-16 19:46:05 +01:00
fn main() {
println!("Hello, world!");
tls::main();
}
#[cfg(test)]
mod tests {
#[test]
fn passes() {
println!("passes okay");
}
2024-05-16 19:46:05 +01:00
}