I'm installed Rakudo on Ubuntu 21.10 by running this command:
sudo apt install rakudo
Now I can run the Raku REPL by running raku or rakudo.
I would like to be able to select the previous command by typing the up arrow, just like you can in the Python on Node REPL, for instance. Instead, this is what happens when I press the arrow key:
$ raku
> say "hello";
hello
> ^[[A
How do I make the up arrow work?