When your application is addressed to a non-technical audience, you need to design it so that the users can move around and get their jobs done with only a keyboard, and maybe mouse. There are many ways to achieve that, from using a simple console UI to a more complicated, and if possible portable, window-based application. That functionality is not available by default in Raku, so in most cases you will need to use distributions in the ecosystem, and these will probably use native libraries, so this chapter also focuses on them.
Recipe 13-1. Use Full-Console UI
Problem
Create a frontend that ...