Use a more familiar lua snake_hour

This commit is contained in:
Evgeny
2021-08-01 19:57:41 +03:00
parent 6e24536f99
commit f24288af99
26 changed files with 208 additions and 184 deletions

View File

@@ -1,7 +1,7 @@
stringx = require 'pl.stringx'
sx = require 'pl.stringx'
function onResume()
function on_resume()
local string = "String with spaces"
local sList = stringx.split(string, " ")
ui:showText(sList[3])
local s_list = sx.split(string, " ")
ui:show_text(s_list[3])
end