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