Commerce report for Sirius Outpost: 01:42:53 PM Sat Jun 24, 2051
-=-=- Docking Log -=-=-
The Pratfall II just left.
Items | Status | Trading | % of max | OnBoard |
---|---|---|---|---|
----- | ------ | ------- | -------- | ------- |
Fuel Ore | Buying | 1261 | 99% | 0 |
Organics | Buying | 2076 | 96% | 75 |
Equipment | Selling | 2180 | 93% | 0 |
You have 181,446 credits and 0 empty cargo holds.
(define (find term lst) ( print "trying car: " ( car lst ) ) ;; for debug ( cond ((null? lst) #f) ;; status quo: it returns the last thing it looked at if finds none ((equal? (car lst) term) lst) ;; todo handle alists with pair ((list? (car lst)) find (car lst)) (else (find term (cdr lst)))))