[Tutor] functions, system statements, sleep

Moshe Zadka moshez@zadka.site.co.il
Sun, 21 Jan 2001 15:52:59 +0200 (IST)


On Sat, 20 Jan 2001, "Matthias Hager" <martok@mattsmail.com> wrote:

> Is there a way to use Tkinter or any other GUI with Perl?

There's Perl/Tk, and there are also Gtk+ Perl bindings.

) I now don't like that you have to create your function first, 
> I usually get my program out of the way, then make my functions. 

def main():
	func1()
	func2()

def func1():
	pass

def func2():
	pass

if __name__ == '__main__':
	main()

-- 
Moshe Zadka <sig@zadka.site.co.il>
This is a signature anti-virus. 
Please stop the spread of signature viruses!
Fingerprint: 4BD1 7705 EEC0 260A 7F21  4817 C7FC A636 46D0 1BD6