1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
pub 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
}