Create parser.v

This commit is contained in:
2026-07-11 12:20:11 +02:00
parent 95376d5cc8
commit 5a24afb267
2 changed files with 8 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
fn parse(lines []string) string {
mut output := ''
for _, line in lines {
output += line + '\n'
}
return output
}