June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
13
Task/Tokenize-a-string/Falcon/tokenize-a-string.falcon
Normal file
13
Task/Tokenize-a-string/Falcon/tokenize-a-string.falcon
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/* created by Aykayayciti Earl Lamont Montgomery
|
||||
April 9th, 2018 */
|
||||
|
||||
a = []
|
||||
a = strSplit("Hello,How,Are,You,Today", ",")
|
||||
index = 0
|
||||
start = 0
|
||||
b = ""
|
||||
for index in [ start : len(a)-1 : 1 ]
|
||||
b = b + a[index] + "."
|
||||
end
|
||||
|
||||
> b
|
||||
Loading…
Add table
Add a link
Reference in a new issue