2007/04/15

hello, Django!

from django.http import HttpResponse
class test:
def hello():
return HttpResponse("hello, Django!")

djangoTest=test()
djangoTest.hello()

hello, python!

def hellopython():
return "hello, python!"