move to test folder and fix import bug in shell

This commit is contained in:
2023-03-20 00:17:43 +00:00
parent b56c1fc485
commit 4a320008b2
9 changed files with 37 additions and 8 deletions

View File

@@ -1,19 +0,0 @@
let getInitials(name) = do
name = name.upper()
namesplit = name.split(" ")
i = 0
while (i < namesplit.length) do
namesplit[i] = namesplit[i][0]
i = i + 1
return namesplit.join("")
name = "william bell"
term.log(getInitials(name))
term.log(name)
let addLastName(name) = do
name.append(" Bell")
name = "William"
addLastName(name)
term.log(name)