How to start a gambas program with arguments

Make an executable gambasprogram and start it with 2 arguments:
./gui_n_args kakakaka ozozozoz

guiNargs.png

' 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

-- JochenGeorges - 28 Dec 2004