aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 4054f9031eb2389d7c2dc703e3b190a5e07c6a97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]
pub fn introduce_locusts(){}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test() {
        introduce_locusts();
    }
}