-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
19 lines (14 loc) · 845 Bytes
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
* Initial public version (2020-03-01)
- Manage accounts and keep track of spending using an interactive program to
enter transactions
- Extensible with Guile Scheme, the program's prompt is a full Scheme
interpreter (except that you do not have to type parenthesis around the whole
statement). The basic commands of the program are Scheme functions themselves
made interactive so that you can enter their arguments interactively by the
(leas/call) function.
- See current and future spending to help make plans. Can change what the
"current day" of the system is interactively so that you can see both present
and future account balances at different times.
- You can use Scheme expressions when entering a transaction's value, so, for
example, the amount of money transferred might be entered as: (* 0.9 (- 932
329)).