append/string

This commit is contained in:
Marc Beninca 2025-08-02 02:42:26 +02:00
parent 3401c12346
commit 6918ff603f
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -10,11 +10,11 @@ function alias_eval(alias, name, type) {
print text "; }" print text "; }"
} }
function append(line) { function append(string) {
if (doc) { if (doc) {
doc = doc "\n" doc = doc "\n"
} }
doc = doc line doc = doc string
} }
function extract(string, type) { function extract(string, type) {