[Tutor] ?4uplz-> function

David Meltzer asdffdsa@bellatlantic.net
Fri, 5 Oct 2001 17:04:27 -0400


hilo2u and thanks for reading this,
i would like to find a way to create a def that behaves more like a builtin
keyword such as 'print' in that i would not need to use a parenthesis.

here is an example

print 10 //this is legal

def printit(Num):
	print Num

printit (10) //legal
printit 10 //illegal.

so perhaps you know a way to make the illegal legal

thanks,
dave