This commit is contained in:
2025-02-03 01:46:51 +05:30
parent ea62a9518d
commit 2f4e62c3af

9
remove_string_space.v Normal file
View File

@@ -0,0 +1,9 @@
import readline
fn main() {
mut r := readline.Readline{}
a := r.read_line('Enter your string: ')!
b := a.replace(' ', '')
print(b)
}