ba19f3c1dd
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
22 lines
406 B
Text
22 lines
406 B
Text
' Gambas module file
|
|
|
|
PUBLIC SUB Main()
|
|
|
|
' Session["login"] = "cartable"
|
|
' Session["password"] = "test"
|
|
' Session["date"] = Date(1972, 9, 6)
|
|
' Session["age"] = 34
|
|
' Session["taille"] = 1.72
|
|
' Session["liste"] = ["bleu", "blanc", "rouge"]
|
|
|
|
END
|
|
|
|
PUBLIC SUB Log(sMsg AS String)
|
|
|
|
DIM hFile AS File
|
|
|
|
hFile = OPEN "/tmp/session.log" FOR APPEND
|
|
PRINT #hFile, sMsg
|
|
CLOSE #hFile
|
|
|
|
END
|