4 my $cui = new Curses
::UI
( -color_support
=> 1, -compat
=> 0 );
5 #my $win = $cui->add('window_id', 'Window');
7 my $file = $cui->filebrowser(
12 # Filebrowser will return undef
13 # if no file was selected.
15 unless (open F
, ">$file") {
16 print F
"Hello, world!\n";
19 $cui->error(qq(Error on writing to
"$file":\n$!));
23 #print "TEXT: $text \n";
This page took 0.261454 seconds and 4 git commands to generate.