So far we have been working with small scripts and modules that, in general, had everything they needed to get the job done. Most real programs, however, will need some information from the user to run properly, even if they work with default values. These will come in the shape of environment information, command-line flags, or configuration files in some standard format. In this chapter, we’ll see how these work in Raku.
Recipe 5-1. Configure a Program Using JSON/YAML/.ini Files
Problem
You need to run a program with a series of values that are not known at the time you design the program, ...