diff options
| author | jussi | 2023-04-14 00:11:58 +0300 |
|---|---|---|
| committer | jussi | 2023-04-14 00:11:58 +0300 |
| commit | dc2edd69440fcc2470a45562149166695d4edbcc (patch) | |
| tree | 25d4779859468d44958f41357af53396452c3f52 /examples/resources/lib/utillib.lua | |
| parent | 895c7f1a06de2d89347909d62da41be9d62f0d09 (diff) | |
| download | reilua-enhanced-dc2edd69440fcc2470a45562149166695d4edbcc.tar.gz reilua-enhanced-dc2edd69440fcc2470a45562149166695d4edbcc.tar.bz2 reilua-enhanced-dc2edd69440fcc2470a45562149166695d4edbcc.zip | |
Raygui wrapper lib.
Diffstat (limited to 'examples/resources/lib/utillib.lua')
| -rw-r--r-- | examples/resources/lib/utillib.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/resources/lib/utillib.lua b/examples/resources/lib/utillib.lua index 3021465..920ebd7 100644 --- a/examples/resources/lib/utillib.lua +++ b/examples/resources/lib/utillib.lua @@ -114,6 +114,9 @@ function utillib.split( str, sep ) for str in string.gmatch( str, "([^"..sep.."]+)" ) do table.insert( t, str ) end + -- for s in string.gmatch( str, "([^"..sep.."]+)" ) do + -- table.insert( t, s ) + -- end return t end |
