RosettaCodeData/Task/Keyboard-input-Keypress-check/Perl-6/keyboard-input-keypress-check.pl6

11 lines
168 B
Raku
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
use Term::ReadKey;
react {
whenever key-pressed(:!echo) {
given .fc {
when 'q' { done }
default { .uniname.say }
}
}
}