Skip to content

raylib.TextFormat

JoeStrout edited this page Apr 29, 2026 · 2 revisions

TextFormat

Parameters

Parameter Default Value Note
text
args ValueList(

Return value

Condition Return Value
(always) list

Notes

Example

// Format a string with a numeric value
score = 42
msg = raylib.TextFormat("Score: %d", score)
print msg  // "Score: 42"

Clone this wiki locally