RSS 2.0

Personal Info:

Joe Send mail to the author(s) leads the architecture of an experimental OS's developer platform, where he is also chief architect of its programming language. His current mission is to enable writing large-scale software that is reliable, secure, and scalable by-construction. Before this, Joe founded the Parallel Extensions to .NET project. He has been granted 19 patents, with 49 pending. When not working, Joe enjoys travelling with his wife, writing books, writing music, studying music theory & mathematics, and doing anything involving food & wine.

My books

My music

Disclaimer:
The content of this site are my own personal opinions and do not represent my employer's view in anyway.

© 2012, Joe Duffy

 
 Thursday, April 14, 2005

Better.

(define (mk-q) '())
(define (en-q q x) (cons x q))
(define (de-q q) (if (empty? q) 'error (cdr q)))
(define (head q) (if (empty? q) 'error (car q)))
(define (size q) (if (empty? q) 0 (+ 1 (size (de-q q)))))
(define (empty? q) (null? q))

4/14/2005 5:47:08 PM (Pacific Daylight Time, UTC-07:00)  #   

 

Recent Entries:

Search:

Browse by Date:
<April 2005>
SunMonTueWedThuFriSat
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

Browse by Category:

Notables: