summaryrefslogtreecommitdiff
path: root/rust/findurl/src/furl.rs
blob: 5ce60c11bd23dd440ed41dc5c88b4be3e8bd2914 (plain)
1
2
3
4
5
6
7
pub fn find_urls(urls: &mut Vec<String>) -> () {

    urls.push("Ronaldo".to_string());
    for i in urls {
        println!("{i}");
    }
}