pifu 0.3.5

Cross platform package build tool
Documentation
1
2
3
4
5
6
7
8
9
10
use std::thread::sleep;
use std::time::Duration;

fn main() {
    let sec = Duration::from_millis(100);
    loop {
        println!("Hello, pifu");
        sleep(sec);
    }
}