RosettaCodeData/Task/Keyboard-input-Keypress-check/Perl-6/keyboard-input-keypress-check.pl6
2019-09-12 10:33:56 -07:00

10 lines
168 B
Raku

use Term::ReadKey;
react {
whenever key-pressed(:!echo) {
given .fc {
when 'q' { done }
default { .uniname.say }
}
}
}