Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
2
Task/String-length/Lua/string-length-1.lua
Normal file
2
Task/String-length/Lua/string-length-1.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
str = "Hello world"
|
||||
length = #str
|
||||
2
Task/String-length/Lua/string-length-2.lua
Normal file
2
Task/String-length/Lua/string-length-2.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
str = "Hello world"
|
||||
length = string.len(str)
|
||||
2
Task/String-length/Lua/string-length-3.lua
Normal file
2
Task/String-length/Lua/string-length-3.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
str = "Hello world"
|
||||
length = #str
|
||||
2
Task/String-length/Lua/string-length-4.lua
Normal file
2
Task/String-length/Lua/string-length-4.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
str = "Hello world"
|
||||
length = string.len(str)
|
||||
3
Task/String-length/Lua/string-length-5.lua
Normal file
3
Task/String-length/Lua/string-length-5.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
utf8.len("møøse")
|
||||
utf8.len("𝔘𝔫𝔦𝔠𝔬𝔡𝔢")
|
||||
utf8.len("J̲o̲s̲é̲")
|
||||
Loading…
Add table
Add a link
Reference in a new issue