Hello Clement,
short answer is: no. If you call AddMessage again, you will get error: Bad parameter type! Because you modified variable type to string, previously list. I recommend to you to work with list items like in this example:
func main() {
greetings = []
greetings + "Clement"
greetings + "World"
AddMessage(greetings)
puts(greetings)
}
func AddMessage(greetings) {
if type(greetings) = "LIST"
len = len(greetings)
for i = 1 to len
greetings[i] = "Hello " + greetings[i]
next
elseif type(greetings) = "STRING"
greetings = "Hello " + greetings
ok
}
which allows you to call AddMessage with individual list item.
Greetings,
Ilir