This commit is contained in:
2024-12-25 09:23:31 +01:00
parent 01ca5897db
commit 4e030b794d
306 changed files with 35071 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
module texttools
fn test_dedent() {
mut text := '
a
b
c
d
'
text = dedent(text)
assert text.len == 20
}