%
'''
''' Méthode de test.
''' Aucun paramètre spécial.
'''
''' Le texte à afficher
''' Un autre paramètre à afficher
''' true if success
'''
''' Voici un exemple:
'''
''' x = Test("allo", "bye") ' appel la méthode avec 2 paramètre
''' y = Test("a", "b")
'''
'''
function Test(a, b)
response.write("allo")
end function
'''
''' Some test2
'''
sub Test2()
response.write("allo")
end sub
sub NoComment()
end sub
%>
Test
Test!