-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.LoadTextLines
JoeStrout edited this page Apr 29, 2026
·
2 revisions
LoadTextLines
| Parameter | Default Value | Note |
|---|---|---|
| text |
| Condition | Return Value |
|---|---|
| (always) | list |
// Split a multi-line string into individual lines
text = "line one" + char(10) + "line two" + char(10) + "line three"
lines = raylib.LoadTextLines(text)
for line in lines
print line
end for