File: any.pm

package info (click to toggle)
libapp-cmd-plugin-prompt-perl 1.006-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: perl: 257; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;
package TestApp::Command::any;
use TestApp -command;

sub run {
  my ($self) = @_;

  prompt_any_key;
  print "thanks for pressing a key\n";
};

1;