Changes in this version:
- Case-insensitive units: you can now write
5 Meters
- Experimental date support:
- You can create a date object like so:
> "2021-05-20" to date Thursday, 20 May 2021
- No other date-related functionality has been implemented yet, including no times/timezones, durations, date arithmetic or different date formats.
- You can create a date object like so:
- fend now parses single and double quotes as feet and inches (instead of as string literals) in more situations, so you can once again write:
> 1.2192 m to ' 4'
- The CLI program can now read options from a config file. Type
help
to find out where it is stored. Theconfig.toml
file can contain the following options:prompt = '> ' color = false
- Terminal color support: this is disabled by default, so you'll need to create a config file containing
color = true
first. - Added a
conjugate
function that computes the complex conjugate of a number: e.g.conjugate(i)
is-i
. - Improve consistency around error messages