File: console.pl

package info (click to toggle)
libui-dialog-perl 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 808 kB
  • sloc: perl: 7,403; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
use strict;
use warnings;
use diagnostics;
use FileHandle;
use UI::Dialog::Console;

my $d = new UI::Dialog::Console ( title => "UI::Dialog::Console Demo",
								  debug => 0, height => 20, width => 65 );


$d->msgbox( text => "This message box is provided by one of the following: dialog, whiptail, or simple ASCII." );