This commit is contained in:
Evgeny
2021-08-04 21:33:51 +03:00
parent 259ef63496
commit 5f893021ff
7 changed files with 87 additions and 18 deletions

5
utils-sample.lua Normal file
View File

@@ -0,0 +1,5 @@
function on_resume()
local str = "one two three"
local tab = str:split(" ")
ui:show_text(tab[2])
end