Function scrape_examples::test

source ·
pub fn test()
Expand description

§Examples

test();
test();
Examples found in repository?
examples/check.rs (line 13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
fn main() {
    for i in 0..9 {
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
    }
    scrape_examples::test();
    for i in 0..9 {
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
    }
    scrape_examples::test();
}