Advertisement
anupam79

Perl gui using =Tkx=

Oct 24th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.14 KB | None | 0 0
  1. use Tkx;
  2.  
  3. Tkx::button(".b",
  4.     -text => "Hello, world",
  5.     -command => sub { Tkx::destroy("."); },
  6. );
  7. Tkx::pack(".b");
  8.  
  9. Tkx::MainLoop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement