10 lines
105 B
Rust
10 lines
105 B
Rust
|
#![no_std]
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
#[test]
|
||
|
fn simple() {
|
||
|
assert_eq!(1 + 1, 2);
|
||
|
}
|
||
|
}
|