6 lines
71 B
Plaintext
6 lines
71 B
Plaintext
unit oktrim;
|
|
|
|
fn trimmed(line: str) -> str {
|
|
return line.trim();
|
|
}
|