Skip to content

Commit 20adca9

Browse files
committed
import
1 parent 873efab commit 20adca9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
use v6;
2+
3+
=begin pod
4+
5+
=TITLE List Signals
6+
7+
=AUTHOR stmuk
8+
9+
You want to list the signals available on a UNIX-like OS
10+
11+
=end pod
12+
13+
# shamelessly stolen from a test
14+
#
15+
my @signals = $*KERNEL.signals.grep(Signal);
16+
17+
say :@signals.perl;
18+
19+
# vim: expandtab shiftwidth=4 ft=perl6

0 commit comments

Comments
 (0)