Output member file to nick.misc in web output.
This commit is contained in:
parent
76ff48329a
commit
b3bb37cbce
3 changed files with 12 additions and 1 deletions
|
@ -47,6 +47,12 @@
|
|||
(with-output-to-file (sprintf "~A.balance" nick)
|
||||
(lambda ()
|
||||
(print (member-total-balance mr))))
|
||||
(with-output-to-file (sprintf "~A.misc" nick)
|
||||
(lambda ()
|
||||
(let loop ((lines (member-source mr)))
|
||||
(when (not (null? lines))
|
||||
(print (car lines))
|
||||
(loop (cdr lines))))))
|
||||
))
|
||||
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue