Make an executable gambasprogram and start it with 2 arguments:
./gui_n_args kakakaka ozozozoz
' Gambas class file
PUBLIC SUB _new()
word AS String
i AS Integer
FOR i = 1 TO Application.Args.Count - 1
word = word & " " & Application.Args[i]
NEXT
TextLabel1.Text = word
END