Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace env!("HOME") with env::var("HOME") | Rory Dudley | 2024-03-30 | 1 | -1/+8 |
| | | | | | | Replaced all (non-test) instances of env!("HOME") with env::var("HOME"). The env! macro should only be used in instances where the environment variable should be resolved during compile time. | ||||
* | The anthology module | Rory Dudley | 2024-03-28 | 1 | -0/+20 |
The anthology module was added to run built-in commands. The 'cd' and 'exit' built-ins were moved from the main recite() loop to this module. Additionally, the 'export' and 'source' built-ins were added. |