8 lines
74 B
Plaintext
8 lines
74 B
Plaintext
unit oktrim1;
|
|
|
|
fn trimmed(line: str) -> str {
|
|
return line.trim();
|
|
}
|
|
|
|
|