1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
fn main(){
    
}
mod converter {
    
    #[allow(dead_code)]
    pub fn convert(text: &str ) -> String {

        let result: String = text.chars()
        .map(|x| match x {
            'l' => 'w',
            'L' => 'W',
            'r' => 'w',
            'R' => 'W',
            _  => x
        }).collect();
        result
    }
}