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